diff --git a/grammar.js b/grammar.js index f64b2f2..2a9fe20 100644 --- a/grammar.js +++ b/grammar.js @@ -1340,6 +1340,17 @@ function preprocIf(suffix, content, precedence = 0) { ); } + /** + * + * @param {GrammarSymbols} $ + * + * @return {AliasRule | SymbolRule} + * + */ + function elifBlock($) { + return suffix ? alias($['preproc_elifdef' + suffix], $.preproc_elifdef) : $.preproc_elifdef; + } + return { ['preproc_if' + suffix]: $ => prec(precedence, seq( preprocessor('if'), @@ -1354,7 +1365,7 @@ function preprocIf(suffix, content, precedence = 0) { choice(preprocessor('ifdef'), preprocessor('ifndef')), field('name', $.identifier), repeat(content($)), - field('alternative', optional(choice(elseBlock($), $.preproc_elifdef))), + field('alternative', optional(choice(elseBlock($), elifBlock($)))), preprocessor('endif'), )), diff --git a/src/grammar.json b/src/grammar.json index e3250bf..fde1224 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -871,8 +871,13 @@ ] }, { - "type": "SYMBOL", - "name": "preproc_elifdef" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1249,8 +1254,13 @@ ] }, { - "type": "SYMBOL", - "name": "preproc_elifdef" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1636,8 +1646,13 @@ ] }, { - "type": "SYMBOL", - "name": "preproc_elifdef" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" } ] }, diff --git a/src/node-types.json b/src/node-types.json index b698b92..c3fba3c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2789,6 +2789,14 @@ "type": "declaration", "named": true }, + { + "type": "enumerator", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, { "type": "function_definition", "named": true diff --git a/src/parser.c b/src/parser.c index dfaf999..f065e55 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2214 -#define LARGE_STATE_COUNT 555 -#define SYMBOL_COUNT 342 +#define STATE_COUNT 2229 +#define LARGE_STATE_COUNT 557 +#define SYMBOL_COUNT 345 #define ALIAS_COUNT 3 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 0 @@ -194,181 +194,184 @@ enum ts_symbol_identifiers { sym_preproc_ifdef_in_field_declaration_list = 167, sym_preproc_else_in_field_declaration_list = 168, sym_preproc_elif_in_field_declaration_list = 169, - sym_preproc_if_in_enumerator_list = 170, - sym_preproc_ifdef_in_enumerator_list = 171, - sym_preproc_else_in_enumerator_list = 172, - sym_preproc_elif_in_enumerator_list = 173, - sym_preproc_if_in_enumerator_list_no_comma = 174, - sym_preproc_ifdef_in_enumerator_list_no_comma = 175, - sym_preproc_else_in_enumerator_list_no_comma = 176, - sym_preproc_elif_in_enumerator_list_no_comma = 177, - sym__preproc_expression = 178, - sym_preproc_parenthesized_expression = 179, - sym_preproc_defined = 180, - sym_preproc_unary_expression = 181, - sym_preproc_call_expression = 182, - sym_preproc_argument_list = 183, - sym_preproc_binary_expression = 184, - sym_function_definition = 185, - sym__old_style_function_definition = 186, - sym_declaration = 187, - sym__declaration_declarator = 188, - sym_type_definition = 189, - sym__type_definition_type = 190, - sym__type_definition_declarators = 191, - sym__declaration_modifiers = 192, - sym__declaration_specifiers = 193, - sym_linkage_specification = 194, - sym_attribute_specifier = 195, - sym_attribute = 196, - sym_attribute_declaration = 197, - sym_ms_declspec_modifier = 198, - sym_ms_based_modifier = 199, - sym_ms_call_modifier = 200, - sym_ms_unaligned_ptr_modifier = 201, - sym_ms_pointer_modifier = 202, - sym_declaration_list = 203, - sym__declarator = 204, - sym__field_declarator = 205, - sym__type_declarator = 206, - sym__abstract_declarator = 207, - sym_parenthesized_declarator = 208, - sym_parenthesized_field_declarator = 209, - sym_parenthesized_type_declarator = 210, - sym_abstract_parenthesized_declarator = 211, - sym_attributed_declarator = 212, - sym_attributed_field_declarator = 213, - sym_attributed_type_declarator = 214, - sym_pointer_declarator = 215, - sym_pointer_field_declarator = 216, - sym_pointer_type_declarator = 217, - sym_abstract_pointer_declarator = 218, - sym_function_declarator = 219, - sym_function_field_declarator = 220, - sym_function_type_declarator = 221, - sym_abstract_function_declarator = 222, - sym__old_style_function_declarator = 223, - sym_array_declarator = 224, - sym_array_field_declarator = 225, - sym_array_type_declarator = 226, - sym_abstract_array_declarator = 227, - sym_init_declarator = 228, - sym_compound_statement = 229, - sym_storage_class_specifier = 230, - sym_type_qualifier = 231, - sym__type_specifier = 232, - sym_sized_type_specifier = 233, - sym_enum_specifier = 234, - sym_enumerator_list = 235, - sym_struct_specifier = 236, - sym_union_specifier = 237, - sym_field_declaration_list = 238, - sym__field_declaration_list_item = 239, - sym_field_declaration = 240, - sym__field_declaration_declarator = 241, - sym_bitfield_clause = 242, - sym_enumerator = 243, - sym_variadic_parameter = 244, - sym_parameter_list = 245, - sym__old_style_parameter_list = 246, - sym_parameter_declaration = 247, - sym_attributed_statement = 248, - sym_labeled_statement = 249, - sym__top_level_expression_statement = 250, - sym_expression_statement = 251, - sym_if_statement = 252, - sym_else_clause = 253, - sym_switch_statement = 254, - sym_case_statement = 255, - sym_while_statement = 256, - sym_do_statement = 257, - sym_for_statement = 258, - sym__for_statement_body = 259, - sym_return_statement = 260, - sym_break_statement = 261, - sym_continue_statement = 262, - sym_goto_statement = 263, - sym_seh_try_statement = 264, - sym_seh_except_clause = 265, - sym_seh_finally_clause = 266, - sym_seh_leave_statement = 267, - sym__expression = 268, - sym__expression_not_binary = 269, - sym_comma_expression = 270, - sym_conditional_expression = 271, - sym_assignment_expression = 272, - sym_pointer_expression = 273, - sym_unary_expression = 274, - sym_binary_expression = 275, - sym_update_expression = 276, - sym_cast_expression = 277, - sym_type_descriptor = 278, - sym_sizeof_expression = 279, - sym_alignof_expression = 280, - sym_offsetof_expression = 281, - sym_generic_expression = 282, - sym_subscript_expression = 283, - sym_call_expression = 284, - sym_gnu_asm_expression = 285, - sym_gnu_asm_qualifier = 286, - sym_gnu_asm_output_operand_list = 287, - sym_gnu_asm_output_operand = 288, - sym_gnu_asm_input_operand_list = 289, - sym_gnu_asm_input_operand = 290, - sym_gnu_asm_clobber_list = 291, - sym_gnu_asm_goto_list = 292, - sym_argument_list = 293, - sym_field_expression = 294, - sym_compound_literal_expression = 295, - sym_parenthesized_expression = 296, - sym_initializer_list = 297, - sym_initializer_pair = 298, - sym_subscript_designator = 299, - sym_subscript_range_designator = 300, - sym_field_designator = 301, - sym_char_literal = 302, - sym_concatenated_string = 303, - sym_string_literal = 304, - sym_null = 305, - sym__empty_declaration = 306, - sym_macro_type_specifier = 307, - aux_sym_translation_unit_repeat1 = 308, - aux_sym_preproc_params_repeat1 = 309, - aux_sym_preproc_if_repeat1 = 310, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 311, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 312, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 313, - aux_sym_preproc_argument_list_repeat1 = 314, - aux_sym__old_style_function_definition_repeat1 = 315, - aux_sym__declaration_declarator_repeat1 = 316, - aux_sym_type_definition_repeat1 = 317, - aux_sym__type_definition_type_repeat1 = 318, - aux_sym__type_definition_declarators_repeat1 = 319, - aux_sym__declaration_specifiers_repeat1 = 320, - aux_sym_attribute_declaration_repeat1 = 321, - aux_sym_attributed_declarator_repeat1 = 322, - aux_sym_pointer_declarator_repeat1 = 323, - aux_sym_sized_type_specifier_repeat1 = 324, - aux_sym_enumerator_list_repeat1 = 325, - aux_sym__field_declaration_declarator_repeat1 = 326, - aux_sym_parameter_list_repeat1 = 327, - aux_sym__old_style_parameter_list_repeat1 = 328, - aux_sym_case_statement_repeat1 = 329, - aux_sym_generic_expression_repeat1 = 330, - aux_sym_gnu_asm_expression_repeat1 = 331, - aux_sym_gnu_asm_output_operand_list_repeat1 = 332, - aux_sym_gnu_asm_input_operand_list_repeat1 = 333, - aux_sym_gnu_asm_clobber_list_repeat1 = 334, - aux_sym_gnu_asm_goto_list_repeat1 = 335, - aux_sym_argument_list_repeat1 = 336, - aux_sym_initializer_list_repeat1 = 337, - aux_sym_initializer_pair_repeat1 = 338, - aux_sym_char_literal_repeat1 = 339, - aux_sym_concatenated_string_repeat1 = 340, - aux_sym_string_literal_repeat1 = 341, - alias_sym_field_identifier = 342, - alias_sym_statement_identifier = 343, - alias_sym_type_identifier = 344, + sym_preproc_elifdef_in_field_declaration_list = 170, + sym_preproc_if_in_enumerator_list = 171, + sym_preproc_ifdef_in_enumerator_list = 172, + sym_preproc_else_in_enumerator_list = 173, + sym_preproc_elif_in_enumerator_list = 174, + sym_preproc_elifdef_in_enumerator_list = 175, + sym_preproc_if_in_enumerator_list_no_comma = 176, + sym_preproc_ifdef_in_enumerator_list_no_comma = 177, + sym_preproc_else_in_enumerator_list_no_comma = 178, + sym_preproc_elif_in_enumerator_list_no_comma = 179, + sym_preproc_elifdef_in_enumerator_list_no_comma = 180, + sym__preproc_expression = 181, + sym_preproc_parenthesized_expression = 182, + sym_preproc_defined = 183, + sym_preproc_unary_expression = 184, + sym_preproc_call_expression = 185, + sym_preproc_argument_list = 186, + sym_preproc_binary_expression = 187, + sym_function_definition = 188, + sym__old_style_function_definition = 189, + sym_declaration = 190, + sym__declaration_declarator = 191, + sym_type_definition = 192, + sym__type_definition_type = 193, + sym__type_definition_declarators = 194, + sym__declaration_modifiers = 195, + sym__declaration_specifiers = 196, + sym_linkage_specification = 197, + sym_attribute_specifier = 198, + sym_attribute = 199, + sym_attribute_declaration = 200, + sym_ms_declspec_modifier = 201, + sym_ms_based_modifier = 202, + sym_ms_call_modifier = 203, + sym_ms_unaligned_ptr_modifier = 204, + sym_ms_pointer_modifier = 205, + sym_declaration_list = 206, + sym__declarator = 207, + sym__field_declarator = 208, + sym__type_declarator = 209, + sym__abstract_declarator = 210, + sym_parenthesized_declarator = 211, + sym_parenthesized_field_declarator = 212, + sym_parenthesized_type_declarator = 213, + sym_abstract_parenthesized_declarator = 214, + sym_attributed_declarator = 215, + sym_attributed_field_declarator = 216, + sym_attributed_type_declarator = 217, + sym_pointer_declarator = 218, + sym_pointer_field_declarator = 219, + sym_pointer_type_declarator = 220, + sym_abstract_pointer_declarator = 221, + sym_function_declarator = 222, + sym_function_field_declarator = 223, + sym_function_type_declarator = 224, + sym_abstract_function_declarator = 225, + sym__old_style_function_declarator = 226, + sym_array_declarator = 227, + sym_array_field_declarator = 228, + sym_array_type_declarator = 229, + sym_abstract_array_declarator = 230, + sym_init_declarator = 231, + sym_compound_statement = 232, + sym_storage_class_specifier = 233, + sym_type_qualifier = 234, + sym__type_specifier = 235, + sym_sized_type_specifier = 236, + sym_enum_specifier = 237, + sym_enumerator_list = 238, + sym_struct_specifier = 239, + sym_union_specifier = 240, + sym_field_declaration_list = 241, + sym__field_declaration_list_item = 242, + sym_field_declaration = 243, + sym__field_declaration_declarator = 244, + sym_bitfield_clause = 245, + sym_enumerator = 246, + sym_variadic_parameter = 247, + sym_parameter_list = 248, + sym__old_style_parameter_list = 249, + sym_parameter_declaration = 250, + sym_attributed_statement = 251, + sym_labeled_statement = 252, + sym__top_level_expression_statement = 253, + sym_expression_statement = 254, + sym_if_statement = 255, + sym_else_clause = 256, + sym_switch_statement = 257, + sym_case_statement = 258, + sym_while_statement = 259, + sym_do_statement = 260, + sym_for_statement = 261, + sym__for_statement_body = 262, + sym_return_statement = 263, + sym_break_statement = 264, + sym_continue_statement = 265, + sym_goto_statement = 266, + sym_seh_try_statement = 267, + sym_seh_except_clause = 268, + sym_seh_finally_clause = 269, + sym_seh_leave_statement = 270, + sym__expression = 271, + sym__expression_not_binary = 272, + sym_comma_expression = 273, + sym_conditional_expression = 274, + sym_assignment_expression = 275, + sym_pointer_expression = 276, + sym_unary_expression = 277, + sym_binary_expression = 278, + sym_update_expression = 279, + sym_cast_expression = 280, + sym_type_descriptor = 281, + sym_sizeof_expression = 282, + sym_alignof_expression = 283, + sym_offsetof_expression = 284, + sym_generic_expression = 285, + sym_subscript_expression = 286, + sym_call_expression = 287, + sym_gnu_asm_expression = 288, + sym_gnu_asm_qualifier = 289, + sym_gnu_asm_output_operand_list = 290, + sym_gnu_asm_output_operand = 291, + sym_gnu_asm_input_operand_list = 292, + sym_gnu_asm_input_operand = 293, + sym_gnu_asm_clobber_list = 294, + sym_gnu_asm_goto_list = 295, + sym_argument_list = 296, + sym_field_expression = 297, + sym_compound_literal_expression = 298, + sym_parenthesized_expression = 299, + sym_initializer_list = 300, + sym_initializer_pair = 301, + sym_subscript_designator = 302, + sym_subscript_range_designator = 303, + sym_field_designator = 304, + sym_char_literal = 305, + sym_concatenated_string = 306, + sym_string_literal = 307, + sym_null = 308, + sym__empty_declaration = 309, + sym_macro_type_specifier = 310, + aux_sym_translation_unit_repeat1 = 311, + aux_sym_preproc_params_repeat1 = 312, + aux_sym_preproc_if_repeat1 = 313, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 314, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 315, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 316, + aux_sym_preproc_argument_list_repeat1 = 317, + aux_sym__old_style_function_definition_repeat1 = 318, + aux_sym__declaration_declarator_repeat1 = 319, + aux_sym_type_definition_repeat1 = 320, + aux_sym__type_definition_type_repeat1 = 321, + aux_sym__type_definition_declarators_repeat1 = 322, + aux_sym__declaration_specifiers_repeat1 = 323, + aux_sym_attribute_declaration_repeat1 = 324, + aux_sym_attributed_declarator_repeat1 = 325, + aux_sym_pointer_declarator_repeat1 = 326, + aux_sym_sized_type_specifier_repeat1 = 327, + aux_sym_enumerator_list_repeat1 = 328, + aux_sym__field_declaration_declarator_repeat1 = 329, + aux_sym_parameter_list_repeat1 = 330, + aux_sym__old_style_parameter_list_repeat1 = 331, + aux_sym_case_statement_repeat1 = 332, + aux_sym_generic_expression_repeat1 = 333, + aux_sym_gnu_asm_expression_repeat1 = 334, + aux_sym_gnu_asm_output_operand_list_repeat1 = 335, + aux_sym_gnu_asm_input_operand_list_repeat1 = 336, + aux_sym_gnu_asm_clobber_list_repeat1 = 337, + aux_sym_gnu_asm_goto_list_repeat1 = 338, + aux_sym_argument_list_repeat1 = 339, + aux_sym_initializer_list_repeat1 = 340, + aux_sym_initializer_pair_repeat1 = 341, + aux_sym_char_literal_repeat1 = 342, + aux_sym_concatenated_string_repeat1 = 343, + aux_sym_string_literal_repeat1 = 344, + alias_sym_field_identifier = 345, + alias_sym_statement_identifier = 346, + alias_sym_type_identifier = 347, }; static const char * const ts_symbol_names[] = { @@ -542,14 +545,17 @@ static const char * const ts_symbol_names[] = { [sym_preproc_ifdef_in_field_declaration_list] = "preproc_ifdef", [sym_preproc_else_in_field_declaration_list] = "preproc_else", [sym_preproc_elif_in_field_declaration_list] = "preproc_elif", + [sym_preproc_elifdef_in_field_declaration_list] = "preproc_elifdef", [sym_preproc_if_in_enumerator_list] = "preproc_if", [sym_preproc_ifdef_in_enumerator_list] = "preproc_ifdef", [sym_preproc_else_in_enumerator_list] = "preproc_else", [sym_preproc_elif_in_enumerator_list] = "preproc_elif", + [sym_preproc_elifdef_in_enumerator_list] = "preproc_elifdef", [sym_preproc_if_in_enumerator_list_no_comma] = "preproc_if", [sym_preproc_ifdef_in_enumerator_list_no_comma] = "preproc_ifdef", [sym_preproc_else_in_enumerator_list_no_comma] = "preproc_else", [sym_preproc_elif_in_enumerator_list_no_comma] = "preproc_elif", + [sym_preproc_elifdef_in_enumerator_list_no_comma] = "preproc_elifdef", [sym__preproc_expression] = "_preproc_expression", [sym_preproc_parenthesized_expression] = "parenthesized_expression", [sym_preproc_defined] = "preproc_defined", @@ -890,14 +896,17 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_ifdef_in_field_declaration_list] = sym_preproc_ifdef, [sym_preproc_else_in_field_declaration_list] = sym_preproc_else, [sym_preproc_elif_in_field_declaration_list] = sym_preproc_elif, + [sym_preproc_elifdef_in_field_declaration_list] = sym_preproc_elifdef, [sym_preproc_if_in_enumerator_list] = sym_preproc_if, [sym_preproc_ifdef_in_enumerator_list] = sym_preproc_ifdef, [sym_preproc_else_in_enumerator_list] = sym_preproc_else, [sym_preproc_elif_in_enumerator_list] = sym_preproc_elif, + [sym_preproc_elifdef_in_enumerator_list] = sym_preproc_elifdef, [sym_preproc_if_in_enumerator_list_no_comma] = sym_preproc_if, [sym_preproc_ifdef_in_enumerator_list_no_comma] = sym_preproc_ifdef, [sym_preproc_else_in_enumerator_list_no_comma] = sym_preproc_else, [sym_preproc_elif_in_enumerator_list_no_comma] = sym_preproc_elif, + [sym_preproc_elifdef_in_enumerator_list_no_comma] = sym_preproc_elifdef, [sym__preproc_expression] = sym__preproc_expression, [sym_preproc_parenthesized_expression] = sym_parenthesized_expression, [sym_preproc_defined] = sym_preproc_defined, @@ -1748,6 +1757,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef_in_field_declaration_list] = { + .visible = true, + .named = true, + }, [sym_preproc_if_in_enumerator_list] = { .visible = true, .named = true, @@ -1764,6 +1777,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef_in_enumerator_list] = { + .visible = true, + .named = true, + }, [sym_preproc_if_in_enumerator_list_no_comma] = { .visible = true, .named = true, @@ -1780,6 +1797,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, [sym__preproc_expression] = { .visible = false, .named = true, @@ -3089,55 +3110,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 2, - [5] = 5, - [6] = 5, - [7] = 2, - [8] = 2, - [9] = 5, - [10] = 5, - [11] = 5, + [5] = 3, + [6] = 2, + [7] = 3, + [8] = 3, + [9] = 2, + [10] = 2, + [11] = 3, [12] = 12, - [13] = 13, + [13] = 12, [14] = 14, - [15] = 15, + [15] = 12, [16] = 16, - [17] = 13, - [18] = 13, - [19] = 19, - [20] = 19, - [21] = 13, - [22] = 19, - [23] = 19, - [24] = 24, - [25] = 19, - [26] = 13, - [27] = 12, + [17] = 12, + [18] = 18, + [19] = 18, + [20] = 18, + [21] = 18, + [22] = 22, + [23] = 23, + [24] = 18, + [25] = 25, + [26] = 12, + [27] = 14, [28] = 28, - [29] = 29, + [29] = 28, [30] = 30, [31] = 31, - [32] = 32, - [33] = 28, - [34] = 32, - [35] = 32, - [36] = 29, - [37] = 31, - [38] = 31, - [39] = 29, - [40] = 28, - [41] = 12, - [42] = 28, - [43] = 31, - [44] = 31, - [45] = 45, - [46] = 29, - [47] = 32, - [48] = 28, - [49] = 32, - [50] = 12, - [51] = 29, + [32] = 31, + [33] = 30, + [34] = 30, + [35] = 14, + [36] = 31, + [37] = 37, + [38] = 37, + [39] = 28, + [40] = 30, + [41] = 41, + [42] = 37, + [43] = 37, + [44] = 28, + [45] = 31, + [46] = 37, + [47] = 28, + [48] = 30, + [49] = 14, + [50] = 31, + [51] = 51, [52] = 52, [53] = 53, [54] = 54, @@ -3145,31 +3166,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 56, + [59] = 55, [60] = 54, - [61] = 58, - [62] = 55, + [61] = 56, + [62] = 58, [63] = 57, - [64] = 57, - [65] = 57, - [66] = 54, - [67] = 55, + [64] = 58, + [65] = 55, + [66] = 57, + [67] = 57, [68] = 58, - [69] = 54, - [70] = 55, - [71] = 56, + [69] = 56, + [70] = 57, + [71] = 58, [72] = 56, [73] = 56, [74] = 54, - [75] = 55, - [76] = 58, - [77] = 57, - [78] = 58, - [79] = 57, - [80] = 56, - [81] = 54, + [75] = 54, + [76] = 55, + [77] = 55, + [78] = 54, + [79] = 55, + [80] = 54, + [81] = 56, [82] = 58, - [83] = 55, + [83] = 57, [84] = 84, [85] = 84, [86] = 84, @@ -3180,7 +3201,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 94, + [94] = 93, [95] = 95, [96] = 96, [97] = 97, @@ -3191,7 +3212,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [102] = 102, [103] = 103, [104] = 104, - [105] = 105, + [105] = 100, [106] = 106, [107] = 107, [108] = 108, @@ -3201,7 +3222,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [112] = 112, [113] = 113, [114] = 114, - [115] = 93, + [115] = 115, [116] = 116, [117] = 117, [118] = 118, @@ -3212,7 +3233,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [123] = 123, [124] = 124, [125] = 125, - [126] = 101, + [126] = 126, [127] = 127, [128] = 128, [129] = 129, @@ -3232,10 +3253,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [143] = 143, [144] = 144, [145] = 145, - [146] = 90, + [146] = 146, [147] = 147, [148] = 148, - [149] = 149, + [149] = 90, [150] = 150, [151] = 151, [152] = 152, @@ -3247,350 +3268,350 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [158] = 158, [159] = 159, [160] = 160, - [161] = 125, - [162] = 91, - [163] = 127, - [164] = 130, + [161] = 98, + [162] = 119, + [163] = 99, + [164] = 93, [165] = 123, - [166] = 131, - [167] = 132, - [168] = 121, - [169] = 119, - [170] = 103, - [171] = 133, - [172] = 118, - [173] = 129, + [166] = 112, + [167] = 115, + [168] = 95, + [169] = 92, + [170] = 96, + [171] = 108, + [172] = 109, + [173] = 116, [174] = 122, - [175] = 102, - [176] = 109, - [177] = 93, - [178] = 111, - [179] = 110, - [180] = 128, - [181] = 101, - [182] = 112, - [183] = 98, - [184] = 108, - [185] = 116, - [186] = 104, - [187] = 100, - [188] = 107, - [189] = 113, - [190] = 106, - [191] = 92, - [192] = 114, - [193] = 124, - [194] = 99, - [195] = 105, - [196] = 117, - [197] = 94, - [198] = 95, - [199] = 120, - [200] = 96, - [201] = 97, - [202] = 157, - [203] = 90, - [204] = 149, - [205] = 151, - [206] = 152, - [207] = 143, - [208] = 136, - [209] = 148, - [210] = 141, - [211] = 134, - [212] = 90, - [213] = 153, - [214] = 156, - [215] = 90, - [216] = 137, - [217] = 155, - [218] = 140, - [219] = 158, - [220] = 160, - [221] = 135, - [222] = 150, - [223] = 139, - [224] = 142, - [225] = 144, - [226] = 145, - [227] = 138, - [228] = 159, - [229] = 154, - [230] = 147, - [231] = 125, - [232] = 97, + [175] = 97, + [176] = 110, + [177] = 91, + [178] = 100, + [179] = 125, + [180] = 126, + [181] = 102, + [182] = 127, + [183] = 128, + [184] = 106, + [185] = 111, + [186] = 107, + [187] = 130, + [188] = 124, + [189] = 129, + [190] = 113, + [191] = 131, + [192] = 132, + [193] = 114, + [194] = 133, + [195] = 117, + [196] = 101, + [197] = 120, + [198] = 118, + [199] = 103, + [200] = 121, + [201] = 104, + [202] = 150, + [203] = 139, + [204] = 90, + [205] = 153, + [206] = 159, + [207] = 140, + [208] = 160, + [209] = 144, + [210] = 90, + [211] = 155, + [212] = 142, + [213] = 147, + [214] = 146, + [215] = 135, + [216] = 138, + [217] = 152, + [218] = 137, + [219] = 151, + [220] = 145, + [221] = 156, + [222] = 157, + [223] = 136, + [224] = 158, + [225] = 154, + [226] = 134, + [227] = 148, + [228] = 90, + [229] = 141, + [230] = 143, + [231] = 132, + [232] = 118, [233] = 109, - [234] = 130, - [235] = 131, - [236] = 132, - [237] = 110, - [238] = 133, - [239] = 124, - [240] = 240, - [241] = 129, - [242] = 122, - [243] = 111, - [244] = 108, - [245] = 116, - [246] = 92, - [247] = 104, - [248] = 91, - [249] = 112, - [250] = 107, - [251] = 113, - [252] = 106, - [253] = 105, - [254] = 127, - [255] = 102, - [256] = 114, - [257] = 94, - [258] = 103, - [259] = 93, - [260] = 95, - [261] = 92, + [234] = 114, + [235] = 110, + [236] = 113, + [237] = 111, + [238] = 91, + [239] = 121, + [240] = 118, + [241] = 116, + [242] = 119, + [243] = 120, + [244] = 133, + [245] = 99, + [246] = 95, + [247] = 115, + [248] = 112, + [249] = 99, + [250] = 108, + [251] = 92, + [252] = 92, + [253] = 97, + [254] = 98, + [255] = 108, + [256] = 109, + [257] = 110, + [258] = 111, + [259] = 91, + [260] = 131, + [261] = 132, [262] = 116, - [263] = 120, - [264] = 117, - [265] = 102, - [266] = 96, - [267] = 97, - [268] = 118, - [269] = 240, - [270] = 118, - [271] = 119, - [272] = 128, - [273] = 101, - [274] = 117, - [275] = 120, - [276] = 103, - [277] = 94, - [278] = 114, - [279] = 121, - [280] = 124, - [281] = 125, - [282] = 113, + [263] = 99, + [264] = 119, + [265] = 93, + [266] = 120, + [267] = 112, + [268] = 115, + [269] = 95, + [270] = 133, + [271] = 96, + [272] = 97, + [273] = 98, + [274] = 100, + [275] = 102, + [276] = 129, + [277] = 122, + [278] = 102, + [279] = 131, + [280] = 129, + [281] = 128, + [282] = 106, [283] = 127, - [284] = 123, - [285] = 119, - [286] = 121, - [287] = 130, - [288] = 123, - [289] = 112, - [290] = 91, - [291] = 131, - [292] = 123, - [293] = 121, - [294] = 132, - [295] = 109, - [296] = 133, - [297] = 119, - [298] = 129, - [299] = 118, - [300] = 98, - [301] = 104, - [302] = 122, - [303] = 99, - [304] = 116, - [305] = 92, - [306] = 110, - [307] = 111, - [308] = 108, - [309] = 93, - [310] = 114, - [311] = 101, - [312] = 117, - [313] = 120, - [314] = 113, - [315] = 109, - [316] = 112, - [317] = 124, - [318] = 107, - [319] = 128, - [320] = 100, - [321] = 106, - [322] = 125, - [323] = 127, - [324] = 130, + [284] = 126, + [285] = 106, + [286] = 107, + [287] = 125, + [288] = 122, + [289] = 107, + [290] = 130, + [291] = 121, + [292] = 117, + [293] = 130, + [294] = 117, + [295] = 104, + [296] = 124, + [297] = 125, + [298] = 126, + [299] = 101, + [300] = 103, + [301] = 114, + [302] = 104, + [303] = 113, + [304] = 304, + [305] = 104, + [306] = 124, + [307] = 127, + [308] = 113, + [309] = 114, + [310] = 117, + [311] = 103, + [312] = 118, + [313] = 121, + [314] = 304, + [315] = 123, + [316] = 122, + [317] = 125, + [318] = 126, + [319] = 103, + [320] = 127, + [321] = 128, + [322] = 129, + [323] = 101, + [324] = 123, [325] = 131, - [326] = 132, - [327] = 105, - [328] = 91, - [329] = 133, - [330] = 129, - [331] = 110, - [332] = 100, - [333] = 95, - [334] = 122, + [326] = 124, + [327] = 132, + [328] = 133, + [329] = 130, + [330] = 120, + [331] = 119, + [332] = 116, + [333] = 107, + [334] = 91, [335] = 111, - [336] = 108, - [337] = 128, - [338] = 107, + [336] = 110, + [337] = 109, + [338] = 108, [339] = 106, - [340] = 105, - [341] = 94, - [342] = 95, - [343] = 96, - [344] = 104, - [345] = 98, - [346] = 103, - [347] = 96, - [348] = 99, - [349] = 97, - [350] = 100, - [351] = 102, - [352] = 99, - [353] = 98, - [354] = 141, - [355] = 157, - [356] = 144, - [357] = 138, - [358] = 134, - [359] = 145, - [360] = 150, - [361] = 139, - [362] = 136, - [363] = 135, - [364] = 155, - [365] = 137, - [366] = 149, - [367] = 147, - [368] = 160, - [369] = 150, - [370] = 151, - [371] = 153, - [372] = 147, - [373] = 143, - [374] = 155, - [375] = 148, - [376] = 160, - [377] = 137, - [378] = 142, - [379] = 135, - [380] = 136, - [381] = 151, - [382] = 158, - [383] = 153, - [384] = 139, - [385] = 157, - [386] = 148, - [387] = 149, - [388] = 141, - [389] = 140, + [340] = 101, + [341] = 92, + [342] = 128, + [343] = 123, + [344] = 102, + [345] = 96, + [346] = 100, + [347] = 98, + [348] = 97, + [349] = 96, + [350] = 95, + [351] = 115, + [352] = 112, + [353] = 93, + [354] = 139, + [355] = 136, + [356] = 158, + [357] = 150, + [358] = 159, + [359] = 157, + [360] = 155, + [361] = 153, + [362] = 158, + [363] = 142, + [364] = 141, + [365] = 147, + [366] = 146, + [367] = 135, + [368] = 152, + [369] = 151, + [370] = 145, + [371] = 137, + [372] = 134, + [373] = 148, + [374] = 143, + [375] = 138, + [376] = 139, + [377] = 138, + [378] = 137, + [379] = 140, + [380] = 143, + [381] = 136, + [382] = 148, + [383] = 134, + [384] = 145, + [385] = 151, + [386] = 159, + [387] = 152, + [388] = 135, + [389] = 157, [390] = 156, - [391] = 156, - [392] = 158, - [393] = 134, - [394] = 138, - [395] = 159, - [396] = 145, - [397] = 159, - [398] = 154, - [399] = 140, - [400] = 154, - [401] = 144, - [402] = 152, - [403] = 142, - [404] = 143, - [405] = 152, + [391] = 160, + [392] = 155, + [393] = 141, + [394] = 154, + [395] = 153, + [396] = 142, + [397] = 140, + [398] = 150, + [399] = 147, + [400] = 146, + [401] = 160, + [402] = 144, + [403] = 144, + [404] = 154, + [405] = 156, [406] = 406, [407] = 407, [408] = 408, [409] = 409, - [410] = 408, - [411] = 411, - [412] = 408, - [413] = 406, + [410] = 407, + [411] = 154, + [412] = 412, + [413] = 413, [414] = 414, - [415] = 409, - [416] = 416, - [417] = 407, - [418] = 416, - [419] = 416, - [420] = 407, - [421] = 421, - [422] = 411, - [423] = 409, - [424] = 414, - [425] = 406, - [426] = 406, - [427] = 407, - [428] = 414, - [429] = 411, - [430] = 407, - [431] = 141, - [432] = 421, - [433] = 414, - [434] = 416, - [435] = 414, - [436] = 409, - [437] = 421, - [438] = 411, - [439] = 406, - [440] = 408, - [441] = 407, - [442] = 414, - [443] = 411, - [444] = 421, - [445] = 158, - [446] = 421, - [447] = 416, - [448] = 240, - [449] = 408, - [450] = 409, - [451] = 411, + [415] = 415, + [416] = 408, + [417] = 415, + [418] = 408, + [419] = 408, + [420] = 415, + [421] = 407, + [422] = 413, + [423] = 414, + [424] = 407, + [425] = 413, + [426] = 414, + [427] = 412, + [428] = 409, + [429] = 406, + [430] = 409, + [431] = 412, + [432] = 415, + [433] = 412, + [434] = 412, + [435] = 304, + [436] = 414, + [437] = 414, + [438] = 412, + [439] = 409, + [440] = 413, + [441] = 406, + [442] = 409, + [443] = 413, + [444] = 415, + [445] = 413, + [446] = 406, + [447] = 409, + [448] = 408, + [449] = 407, + [450] = 407, + [451] = 408, [452] = 406, - [453] = 409, - [454] = 408, - [455] = 416, - [456] = 144, - [457] = 154, - [458] = 150, - [459] = 135, - [460] = 139, - [461] = 140, - [462] = 136, - [463] = 157, - [464] = 142, - [465] = 240, - [466] = 145, - [467] = 137, - [468] = 149, - [469] = 152, - [470] = 151, - [471] = 148, - [472] = 160, - [473] = 155, - [474] = 147, - [475] = 153, - [476] = 159, - [477] = 138, - [478] = 134, - [479] = 479, - [480] = 480, - [481] = 156, + [453] = 414, + [454] = 415, + [455] = 150, + [456] = 134, + [457] = 304, + [458] = 155, + [459] = 136, + [460] = 157, + [461] = 137, + [462] = 462, + [463] = 135, + [464] = 138, + [465] = 139, + [466] = 160, + [467] = 144, + [468] = 140, + [469] = 153, + [470] = 470, + [471] = 145, + [472] = 156, + [473] = 159, + [474] = 143, + [475] = 148, + [476] = 152, + [477] = 141, + [478] = 147, + [479] = 151, + [480] = 146, + [481] = 142, [482] = 482, [483] = 483, [484] = 482, - [485] = 483, - [486] = 483, - [487] = 482, - [488] = 483, - [489] = 483, - [490] = 482, - [491] = 482, - [492] = 482, + [485] = 482, + [486] = 482, + [487] = 483, + [488] = 482, + [489] = 482, + [490] = 483, + [491] = 483, + [492] = 483, [493] = 482, [494] = 483, - [495] = 482, - [496] = 483, + [495] = 483, + [496] = 482, [497] = 483, [498] = 498, [499] = 499, - [500] = 240, - [501] = 240, - [502] = 240, + [500] = 304, + [501] = 304, + [502] = 304, [503] = 90, - [504] = 240, + [504] = 304, [505] = 505, [506] = 506, [507] = 506, @@ -3602,8 +3623,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [513] = 506, [514] = 506, [515] = 506, - [516] = 516, - [517] = 506, + [516] = 506, + [517] = 517, [518] = 518, [519] = 519, [520] = 520, @@ -3621,244 +3642,244 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [532] = 530, [533] = 531, [534] = 534, - [535] = 534, - [536] = 536, - [537] = 536, + [535] = 535, + [536] = 535, + [537] = 534, [538] = 538, - [539] = 536, + [539] = 535, [540] = 540, - [541] = 534, + [541] = 535, [542] = 534, - [543] = 536, + [543] = 534, [544] = 544, - [545] = 544, + [545] = 545, [546] = 546, [547] = 547, - [548] = 546, - [549] = 544, - [550] = 550, - [551] = 551, - [552] = 546, - [553] = 546, - [554] = 544, - [555] = 555, - [556] = 555, - [557] = 550, - [558] = 558, - [559] = 559, - [560] = 559, + [548] = 548, + [549] = 547, + [550] = 544, + [551] = 544, + [552] = 552, + [553] = 553, + [554] = 547, + [555] = 544, + [556] = 547, + [557] = 557, + [558] = 557, + [559] = 552, + [560] = 560, [561] = 561, [562] = 562, - [563] = 563, - [564] = 559, - [565] = 565, - [566] = 562, - [567] = 559, + [563] = 561, + [564] = 564, + [565] = 552, + [566] = 566, + [567] = 567, [568] = 568, [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, + [570] = 552, + [571] = 561, + [572] = 561, [573] = 573, [574] = 574, [575] = 575, [576] = 576, - [577] = 559, - [578] = 578, - [579] = 562, - [580] = 580, - [581] = 581, - [582] = 559, - [583] = 562, - [584] = 562, - [585] = 559, - [586] = 550, - [587] = 559, - [588] = 588, - [589] = 550, + [577] = 576, + [578] = 576, + [579] = 579, + [580] = 576, + [581] = 561, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 561, + [587] = 576, + [588] = 561, + [589] = 589, [590] = 590, - [591] = 591, + [591] = 561, [592] = 592, [593] = 593, [594] = 594, [595] = 595, - [596] = 596, + [596] = 592, [597] = 597, - [598] = 592, - [599] = 596, + [598] = 598, + [599] = 599, [600] = 592, [601] = 601, - [602] = 592, + [602] = 602, [603] = 603, [604] = 592, [605] = 592, - [606] = 606, - [607] = 592, - [608] = 608, + [606] = 592, + [607] = 607, + [608] = 592, [609] = 609, - [610] = 610, - [611] = 592, + [610] = 592, + [611] = 611, [612] = 612, - [613] = 613, + [613] = 611, [614] = 614, [615] = 615, [616] = 616, [617] = 617, [618] = 618, - [619] = 619, + [619] = 614, [620] = 620, - [621] = 615, + [621] = 621, [622] = 622, [623] = 623, [624] = 624, - [625] = 615, - [626] = 622, - [627] = 627, - [628] = 628, + [625] = 624, + [626] = 626, + [627] = 618, + [628] = 617, [629] = 629, - [630] = 623, - [631] = 618, - [632] = 618, - [633] = 615, - [634] = 628, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 617, + [634] = 634, [635] = 635, - [636] = 636, - [637] = 627, - [638] = 622, - [639] = 639, - [640] = 640, - [641] = 636, - [642] = 618, - [643] = 643, - [644] = 616, - [645] = 613, - [646] = 635, - [647] = 623, - [648] = 615, - [649] = 636, - [650] = 612, - [651] = 613, - [652] = 652, + [636] = 614, + [637] = 620, + [638] = 621, + [639] = 622, + [640] = 623, + [641] = 624, + [642] = 622, + [643] = 517, + [644] = 621, + [645] = 620, + [646] = 614, + [647] = 631, + [648] = 618, + [649] = 617, + [650] = 634, + [651] = 631, + [652] = 626, [653] = 653, - [654] = 623, - [655] = 618, - [656] = 613, - [657] = 614, - [658] = 653, - [659] = 620, - [660] = 636, - [661] = 643, - [662] = 618, - [663] = 617, - [664] = 636, - [665] = 623, - [666] = 640, - [667] = 667, - [668] = 639, - [669] = 669, - [670] = 620, - [671] = 653, - [672] = 516, - [673] = 653, - [674] = 653, - [675] = 623, - [676] = 635, - [677] = 677, - [678] = 613, - [679] = 615, + [654] = 654, + [655] = 615, + [656] = 618, + [657] = 653, + [658] = 658, + [659] = 632, + [660] = 617, + [661] = 654, + [662] = 662, + [663] = 663, + [664] = 654, + [665] = 634, + [666] = 615, + [667] = 654, + [668] = 653, + [669] = 626, + [670] = 626, + [671] = 618, + [672] = 663, + [673] = 623, + [674] = 632, + [675] = 615, + [676] = 663, + [677] = 622, + [678] = 620, + [679] = 679, [680] = 653, - [681] = 643, - [682] = 640, - [683] = 628, - [684] = 629, - [685] = 627, - [686] = 624, - [687] = 618, - [688] = 612, - [689] = 623, - [690] = 616, - [691] = 615, - [692] = 620, - [693] = 617, - [694] = 653, - [695] = 635, - [696] = 620, - [697] = 613, - [698] = 643, - [699] = 640, - [700] = 700, - [701] = 628, - [702] = 639, - [703] = 629, - [704] = 616, - [705] = 627, - [706] = 635, - [707] = 612, - [708] = 613, - [709] = 643, - [710] = 615, - [711] = 622, - [712] = 623, - [713] = 620, - [714] = 714, - [715] = 715, - [716] = 640, - [717] = 628, - [718] = 629, - [719] = 624, - [720] = 627, - [721] = 627, - [722] = 624, - [723] = 629, - [724] = 628, - [725] = 620, - [726] = 612, - [727] = 727, - [728] = 640, - [729] = 624, - [730] = 730, - [731] = 643, - [732] = 616, - [733] = 635, - [734] = 727, - [735] = 612, - [736] = 653, + [681] = 681, + [682] = 663, + [683] = 654, + [684] = 662, + [685] = 621, + [686] = 615, + [687] = 632, + [688] = 626, + [689] = 663, + [690] = 690, + [691] = 691, + [692] = 658, + [693] = 624, + [694] = 623, + [695] = 690, + [696] = 622, + [697] = 621, + [698] = 626, + [699] = 620, + [700] = 614, + [701] = 618, + [702] = 617, + [703] = 654, + [704] = 631, + [705] = 634, + [706] = 615, + [707] = 623, + [708] = 631, + [709] = 624, + [710] = 710, + [711] = 658, + [712] = 653, + [713] = 654, + [714] = 662, + [715] = 632, + [716] = 631, + [717] = 626, + [718] = 690, + [719] = 653, + [720] = 632, + [721] = 632, + [722] = 634, + [723] = 634, + [724] = 634, + [725] = 663, + [726] = 631, + [727] = 615, + [728] = 631, + [729] = 634, + [730] = 617, + [731] = 618, + [732] = 614, + [733] = 620, + [734] = 621, + [735] = 622, + [736] = 623, [737] = 624, - [738] = 627, - [739] = 629, - [740] = 628, - [741] = 618, - [742] = 640, - [743] = 616, - [744] = 612, - [745] = 620, - [746] = 730, - [747] = 639, - [748] = 643, - [749] = 629, - [750] = 635, - [751] = 714, - [752] = 624, - [753] = 616, - [754] = 616, - [755] = 612, - [756] = 624, - [757] = 635, - [758] = 627, - [759] = 629, - [760] = 636, - [761] = 628, - [762] = 640, - [763] = 643, - [764] = 613, - [765] = 765, - [766] = 766, - [767] = 765, - [768] = 768, - [769] = 765, - [770] = 765, - [771] = 771, - [772] = 765, + [738] = 738, + [739] = 658, + [740] = 624, + [741] = 623, + [742] = 742, + [743] = 654, + [744] = 744, + [745] = 622, + [746] = 630, + [747] = 621, + [748] = 635, + [749] = 632, + [750] = 617, + [751] = 618, + [752] = 742, + [753] = 662, + [754] = 653, + [755] = 614, + [756] = 615, + [757] = 626, + [758] = 620, + [759] = 614, + [760] = 679, + [761] = 620, + [762] = 624, + [763] = 621, + [764] = 623, + [765] = 653, + [766] = 622, + [767] = 767, + [768] = 767, + [769] = 769, + [770] = 767, + [771] = 767, + [772] = 767, [773] = 773, [774] = 774, [775] = 775, @@ -3873,49 +3894,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [784] = 784, [785] = 785, [786] = 786, - [787] = 498, + [787] = 787, [788] = 788, [789] = 499, - [790] = 788, + [790] = 498, [791] = 791, - [792] = 792, + [792] = 791, [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 791, - [799] = 795, - [800] = 796, + [798] = 798, + [799] = 799, + [800] = 800, [801] = 801, [802] = 802, - [803] = 795, - [804] = 804, - [805] = 796, - [806] = 804, - [807] = 807, - [808] = 795, - [809] = 804, + [803] = 803, + [804] = 794, + [805] = 803, + [806] = 806, + [807] = 793, + [808] = 808, + [809] = 809, [810] = 810, - [811] = 791, - [812] = 812, - [813] = 804, - [814] = 814, - [815] = 795, - [816] = 796, - [817] = 817, - [818] = 796, + [811] = 811, + [812] = 794, + [813] = 793, + [814] = 803, + [815] = 815, + [816] = 801, + [817] = 801, + [818] = 794, [819] = 819, [820] = 820, - [821] = 821, - [822] = 791, - [823] = 823, + [821] = 793, + [822] = 822, + [823] = 793, [824] = 824, - [825] = 804, - [826] = 791, - [827] = 827, - [828] = 828, - [829] = 829, + [825] = 801, + [826] = 803, + [827] = 803, + [828] = 801, + [829] = 794, [830] = 830, [831] = 831, [832] = 832, @@ -3924,245 +3945,245 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [835] = 835, [836] = 836, [837] = 837, - [838] = 838, - [839] = 774, + [838] = 775, + [839] = 839, [840] = 840, [841] = 841, [842] = 842, - [843] = 768, - [844] = 771, - [845] = 766, - [846] = 774, - [847] = 773, - [848] = 848, - [849] = 774, - [850] = 774, - [851] = 851, + [843] = 843, + [844] = 844, + [845] = 769, + [846] = 773, + [847] = 774, + [848] = 775, + [849] = 776, + [850] = 775, + [851] = 775, [852] = 852, - [853] = 852, - [854] = 776, - [855] = 775, - [856] = 852, - [857] = 851, - [858] = 852, - [859] = 851, - [860] = 851, - [861] = 852, - [862] = 851, - [863] = 863, - [864] = 864, - [865] = 864, - [866] = 866, - [867] = 864, - [868] = 868, - [869] = 864, - [870] = 864, - [871] = 871, - [872] = 864, + [853] = 853, + [854] = 854, + [855] = 853, + [856] = 854, + [857] = 778, + [858] = 777, + [859] = 853, + [860] = 854, + [861] = 853, + [862] = 854, + [863] = 853, + [864] = 854, + [865] = 865, + [866] = 865, + [867] = 867, + [868] = 865, + [869] = 865, + [870] = 870, + [871] = 865, + [872] = 872, [873] = 873, - [874] = 874, + [874] = 865, [875] = 875, [876] = 876, - [877] = 774, + [877] = 877, [878] = 878, [879] = 879, - [880] = 880, + [880] = 775, [881] = 881, [882] = 882, [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 829, - [888] = 875, - [889] = 882, - [890] = 876, - [891] = 880, - [892] = 883, - [893] = 885, - [894] = 878, - [895] = 879, - [896] = 873, - [897] = 840, - [898] = 874, + [887] = 887, + [888] = 887, + [889] = 886, + [890] = 836, + [891] = 876, + [892] = 882, + [893] = 875, + [894] = 884, + [895] = 877, + [896] = 878, + [897] = 879, + [898] = 881, [899] = 899, - [900] = 834, - [901] = 884, - [902] = 881, - [903] = 841, - [904] = 876, - [905] = 880, - [906] = 874, - [907] = 881, - [908] = 884, - [909] = 873, - [910] = 882, - [911] = 885, - [912] = 875, - [913] = 883, - [914] = 842, - [915] = 837, - [916] = 836, - [917] = 838, - [918] = 879, - [919] = 899, - [920] = 831, - [921] = 832, - [922] = 878, - [923] = 819, - [924] = 141, - [925] = 807, - [926] = 802, - [927] = 927, - [928] = 928, - [929] = 140, + [900] = 885, + [901] = 901, + [902] = 833, + [903] = 883, + [904] = 839, + [905] = 841, + [906] = 837, + [907] = 886, + [908] = 842, + [909] = 875, + [910] = 901, + [911] = 877, + [912] = 843, + [913] = 876, + [914] = 832, + [915] = 831, + [916] = 878, + [917] = 879, + [918] = 881, + [919] = 882, + [920] = 884, + [921] = 835, + [922] = 885, + [923] = 887, + [924] = 883, + [925] = 780, + [926] = 798, + [927] = 799, + [928] = 820, + [929] = 824, [930] = 930, [931] = 931, - [932] = 828, - [933] = 780, - [934] = 824, + [932] = 806, + [933] = 815, + [934] = 934, [935] = 935, - [936] = 814, - [937] = 779, - [938] = 792, - [939] = 781, - [940] = 940, - [941] = 793, - [942] = 785, - [943] = 778, - [944] = 783, - [945] = 827, - [946] = 794, - [947] = 797, - [948] = 948, - [949] = 777, - [950] = 899, - [951] = 951, - [952] = 820, - [953] = 953, - [954] = 817, - [955] = 955, - [956] = 956, - [957] = 821, - [958] = 812, - [959] = 138, - [960] = 134, - [961] = 158, - [962] = 784, - [963] = 786, - [964] = 801, - [965] = 788, - [966] = 156, - [967] = 782, + [936] = 936, + [937] = 784, + [938] = 779, + [939] = 939, + [940] = 800, + [941] = 819, + [942] = 942, + [943] = 808, + [944] = 788, + [945] = 783, + [946] = 787, + [947] = 785, + [948] = 811, + [949] = 781, + [950] = 160, + [951] = 782, + [952] = 901, + [953] = 802, + [954] = 795, + [955] = 140, + [956] = 786, + [957] = 796, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 791, + [962] = 150, + [963] = 830, + [964] = 810, + [965] = 809, + [966] = 966, + [967] = 156, [968] = 968, - [969] = 883, - [970] = 970, - [971] = 842, - [972] = 951, - [973] = 141, - [974] = 968, - [975] = 156, - [976] = 948, - [977] = 977, - [978] = 978, - [979] = 876, - [980] = 956, - [981] = 874, + [969] = 154, + [970] = 144, + [971] = 971, + [972] = 876, + [973] = 882, + [974] = 934, + [975] = 975, + [976] = 976, + [977] = 930, + [978] = 150, + [979] = 156, + [980] = 154, + [981] = 140, [982] = 931, - [983] = 983, - [984] = 940, - [985] = 930, - [986] = 928, - [987] = 927, - [988] = 158, - [989] = 955, - [990] = 953, - [991] = 880, - [992] = 875, - [993] = 882, - [994] = 866, - [995] = 935, - [996] = 838, - [997] = 885, - [998] = 998, - [999] = 999, - [1000] = 140, - [1001] = 138, - [1002] = 1002, - [1003] = 884, - [1004] = 836, - [1005] = 878, - [1006] = 837, - [1007] = 879, + [983] = 886, + [984] = 144, + [985] = 835, + [986] = 986, + [987] = 883, + [988] = 988, + [989] = 885, + [990] = 881, + [991] = 879, + [992] = 878, + [993] = 877, + [994] = 837, + [995] = 875, + [996] = 996, + [997] = 884, + [998] = 968, + [999] = 831, + [1000] = 832, + [1001] = 887, + [1002] = 842, + [1003] = 160, + [1004] = 966, + [1005] = 843, + [1006] = 960, + [1007] = 1007, [1008] = 1008, - [1009] = 832, - [1010] = 1010, - [1011] = 831, - [1012] = 881, - [1013] = 134, - [1014] = 873, - [1015] = 1015, - [1016] = 775, - [1017] = 899, + [1009] = 935, + [1010] = 936, + [1011] = 939, + [1012] = 873, + [1013] = 959, + [1014] = 1014, + [1015] = 942, + [1016] = 958, + [1017] = 1017, [1018] = 498, - [1019] = 499, - [1020] = 776, - [1021] = 930, - [1022] = 928, - [1023] = 940, - [1024] = 930, - [1025] = 928, + [1019] = 777, + [1020] = 901, + [1021] = 778, + [1022] = 499, + [1023] = 934, + [1024] = 1024, + [1025] = 958, [1026] = 1026, - [1027] = 927, - [1028] = 955, - [1029] = 953, - [1030] = 951, - [1031] = 948, - [1032] = 968, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 931, - [1037] = 935, - [1038] = 956, - [1039] = 140, - [1040] = 968, - [1041] = 138, - [1042] = 134, - [1043] = 1026, - [1044] = 158, - [1045] = 156, - [1046] = 141, - [1047] = 956, - [1048] = 1048, + [1027] = 959, + [1028] = 930, + [1029] = 140, + [1030] = 160, + [1031] = 144, + [1032] = 154, + [1033] = 156, + [1034] = 150, + [1035] = 931, + [1036] = 934, + [1037] = 1037, + [1038] = 942, + [1039] = 1039, + [1040] = 930, + [1041] = 931, + [1042] = 968, + [1043] = 966, + [1044] = 959, + [1045] = 958, + [1046] = 1024, + [1047] = 939, + [1048] = 936, [1049] = 935, - [1050] = 1026, - [1051] = 931, - [1052] = 1052, - [1053] = 1026, + [1050] = 140, + [1051] = 960, + [1052] = 160, + [1053] = 144, [1054] = 1054, - [1055] = 141, + [1055] = 942, [1056] = 1056, - [1057] = 156, - [1058] = 158, - [1059] = 134, - [1060] = 138, - [1061] = 140, + [1057] = 1057, + [1058] = 960, + [1059] = 154, + [1060] = 156, + [1061] = 935, [1062] = 1062, - [1063] = 1063, + [1063] = 968, [1064] = 1064, - [1065] = 1065, - [1066] = 948, - [1067] = 951, - [1068] = 953, - [1069] = 1069, - [1070] = 940, - [1071] = 1026, - [1072] = 1072, - [1073] = 927, + [1065] = 1024, + [1066] = 1066, + [1067] = 936, + [1068] = 1068, + [1069] = 1024, + [1070] = 1070, + [1071] = 1024, + [1072] = 966, + [1073] = 1073, [1074] = 1074, - [1075] = 955, - [1076] = 1076, + [1075] = 939, + [1076] = 150, [1077] = 1077, [1078] = 1078, [1079] = 1079, @@ -4199,8 +4220,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1110] = 1110, [1111] = 1111, [1112] = 1112, - [1113] = 1113, - [1114] = 109, + [1113] = 123, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, @@ -4209,66 +4230,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1120] = 1120, [1121] = 1121, [1122] = 1122, - [1123] = 1120, + [1123] = 1123, [1124] = 1124, - [1125] = 1120, - [1126] = 1120, - [1127] = 1120, - [1128] = 882, - [1129] = 875, - [1130] = 879, - [1131] = 880, - [1132] = 874, - [1133] = 873, + [1125] = 1123, + [1126] = 1126, + [1127] = 1123, + [1128] = 1123, + [1129] = 1123, + [1130] = 877, + [1131] = 878, + [1132] = 879, + [1133] = 885, [1134] = 881, [1135] = 883, - [1136] = 885, - [1137] = 878, - [1138] = 876, - [1139] = 884, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, + [1136] = 886, + [1137] = 882, + [1138] = 884, + [1139] = 1139, + [1140] = 887, + [1141] = 875, + [1142] = 876, [1143] = 1143, [1144] = 1144, - [1145] = 109, - [1146] = 876, - [1147] = 875, - [1148] = 880, - [1149] = 884, - [1150] = 883, - [1151] = 874, - [1152] = 1142, - [1153] = 1153, - [1154] = 885, - [1155] = 882, - [1156] = 878, - [1157] = 879, - [1158] = 873, - [1159] = 881, - [1160] = 1142, - [1161] = 1142, - [1162] = 1142, - [1163] = 883, - [1164] = 880, - [1165] = 874, + [1145] = 1145, + [1146] = 1144, + [1147] = 886, + [1148] = 883, + [1149] = 887, + [1150] = 885, + [1151] = 1144, + [1152] = 881, + [1153] = 879, + [1154] = 1144, + [1155] = 878, + [1156] = 1156, + [1157] = 877, + [1158] = 123, + [1159] = 875, + [1160] = 876, + [1161] = 1144, + [1162] = 884, + [1163] = 882, + [1164] = 1164, + [1165] = 1165, [1166] = 1166, - [1167] = 1167, - [1168] = 1140, - [1169] = 1169, - [1170] = 882, + [1167] = 887, + [1168] = 886, + [1169] = 1143, + [1170] = 1170, [1171] = 876, - [1172] = 875, - [1173] = 885, - [1174] = 878, - [1175] = 1175, - [1176] = 879, - [1177] = 873, + [1172] = 882, + [1173] = 875, + [1174] = 1174, + [1175] = 877, + [1176] = 878, + [1177] = 879, [1178] = 881, - [1179] = 884, + [1179] = 885, [1180] = 1180, - [1181] = 1181, - [1182] = 1182, + [1181] = 884, + [1182] = 883, [1183] = 1183, [1184] = 1184, [1185] = 1185, @@ -4280,121 +4301,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1191] = 1191, [1192] = 1192, [1193] = 1193, - [1194] = 1192, - [1195] = 1191, - [1196] = 1189, - [1197] = 1190, + [1194] = 1194, + [1195] = 1192, + [1196] = 1194, + [1197] = 1193, [1198] = 1198, [1199] = 1199, - [1200] = 1140, - [1201] = 1201, - [1202] = 1202, - [1203] = 1199, + [1200] = 1191, + [1201] = 883, + [1202] = 875, + [1203] = 1203, [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, + [1205] = 1204, + [1206] = 878, + [1207] = 879, [1208] = 1208, - [1209] = 875, + [1209] = 881, [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 1205, - [1215] = 1215, - [1216] = 1216, + [1214] = 885, + [1215] = 886, + [1216] = 1211, [1217] = 1217, - [1218] = 1204, - [1219] = 874, - [1220] = 1217, - [1221] = 882, - [1222] = 876, - [1223] = 1223, - [1224] = 1224, - [1225] = 1204, - [1226] = 880, - [1227] = 1205, - [1228] = 1211, - [1229] = 1211, - [1230] = 1230, - [1231] = 1224, - [1232] = 883, - [1233] = 1205, - [1234] = 1234, - [1235] = 1199, - [1236] = 1236, - [1237] = 1199, - [1238] = 1204, - [1239] = 1199, - [1240] = 885, - [1241] = 1211, - [1242] = 878, - [1243] = 1243, + [1218] = 882, + [1219] = 1212, + [1220] = 877, + [1221] = 1221, + [1222] = 1222, + [1223] = 1203, + [1224] = 1143, + [1225] = 1217, + [1226] = 1221, + [1227] = 1204, + [1228] = 1228, + [1229] = 1204, + [1230] = 1221, + [1231] = 1231, + [1232] = 1211, + [1233] = 1217, + [1234] = 1231, + [1235] = 1235, + [1236] = 876, + [1237] = 1237, + [1238] = 1217, + [1239] = 1239, + [1240] = 1240, + [1241] = 1212, + [1242] = 1213, + [1243] = 1217, [1244] = 1244, [1245] = 1245, - [1246] = 879, - [1247] = 1205, - [1248] = 1204, - [1249] = 873, + [1246] = 1212, + [1247] = 1211, + [1248] = 1248, + [1249] = 884, [1250] = 1250, - [1251] = 881, - [1252] = 1252, - [1253] = 884, + [1251] = 1251, + [1252] = 1204, + [1253] = 1253, [1254] = 1211, - [1255] = 1224, - [1256] = 1210, + [1255] = 1212, + [1256] = 1256, [1257] = 1257, - [1258] = 1206, + [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 1261, + [1261] = 887, [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1261, + [1265] = 1265, [1266] = 1266, [1267] = 1267, [1268] = 1267, - [1269] = 848, + [1269] = 1269, [1270] = 1270, - [1271] = 1267, - [1272] = 1272, - [1273] = 1266, - [1274] = 1266, + [1271] = 1271, + [1272] = 1267, + [1273] = 1273, + [1274] = 1271, [1275] = 1275, [1276] = 1276, - [1277] = 1266, + [1277] = 1267, [1278] = 1278, [1279] = 1279, - [1280] = 1266, + [1280] = 1280, [1281] = 1281, - [1282] = 1282, - [1283] = 1267, - [1284] = 1284, - [1285] = 1285, + [1282] = 1271, + [1283] = 1283, + [1284] = 1267, + [1285] = 1271, [1286] = 1286, [1287] = 1287, - [1288] = 1267, - [1289] = 1275, - [1290] = 1290, - [1291] = 1266, - [1292] = 1292, + [1288] = 1288, + [1289] = 1267, + [1290] = 1263, + [1291] = 1291, + [1292] = 1267, [1293] = 1293, - [1294] = 1267, - [1295] = 1267, - [1296] = 1267, + [1294] = 1270, + [1295] = 1271, + [1296] = 852, [1297] = 1297, - [1298] = 1262, - [1299] = 1121, - [1300] = 1300, - [1301] = 1301, - [1302] = 1141, + [1298] = 1271, + [1299] = 1267, + [1300] = 1291, + [1301] = 1126, + [1302] = 1302, [1303] = 1303, - [1304] = 1180, - [1305] = 1175, - [1306] = 1166, - [1307] = 1307, - [1308] = 1308, + [1304] = 1139, + [1305] = 1305, + [1306] = 1180, + [1307] = 1166, + [1308] = 1170, [1309] = 1309, [1310] = 1310, [1311] = 1311, @@ -4403,223 +4424,223 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1317, + [1317] = 1090, [1318] = 1318, [1319] = 1319, - [1320] = 1109, - [1321] = 1103, + [1320] = 1320, + [1321] = 1321, [1322] = 1322, [1323] = 1323, [1324] = 1324, - [1325] = 1325, - [1326] = 1325, - [1327] = 1318, - [1328] = 1324, - [1329] = 1324, - [1330] = 1325, - [1331] = 1331, - [1332] = 1332, + [1325] = 1080, + [1326] = 1326, + [1327] = 1327, + [1328] = 1327, + [1329] = 1326, + [1330] = 1327, + [1331] = 1324, + [1332] = 1326, [1333] = 1333, [1334] = 1334, - [1335] = 1335, + [1335] = 806, [1336] = 1336, [1337] = 1337, [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1341, - [1342] = 1342, + [1341] = 1337, + [1342] = 1338, [1343] = 1343, - [1344] = 1344, + [1344] = 1336, [1345] = 1345, - [1346] = 1331, - [1347] = 1347, - [1348] = 1333, + [1346] = 1346, + [1347] = 1339, + [1348] = 1348, [1349] = 1349, [1350] = 1350, - [1351] = 1333, + [1351] = 1351, [1352] = 1352, [1353] = 1353, [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1354, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, + [1358] = 1348, + [1359] = 1351, + [1360] = 1360, + [1361] = 1356, + [1362] = 1350, + [1363] = 1337, [1364] = 1364, - [1365] = 1363, - [1366] = 1366, + [1365] = 1365, + [1366] = 1355, [1367] = 1367, - [1368] = 1332, - [1369] = 1333, - [1370] = 1333, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, [1371] = 1371, [1372] = 1372, [1373] = 1373, - [1374] = 1373, - [1375] = 1331, + [1374] = 1374, + [1375] = 1375, [1376] = 1376, - [1377] = 1372, + [1377] = 1377, [1378] = 1378, - [1379] = 1331, - [1380] = 1380, - [1381] = 1366, + [1379] = 1357, + [1380] = 1333, + [1381] = 1360, [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1347, + [1385] = 1385, [1386] = 1386, - [1387] = 1349, - [1388] = 1384, - [1389] = 1350, - [1390] = 1353, + [1387] = 1387, + [1388] = 1350, + [1389] = 1389, + [1390] = 1352, [1391] = 1391, [1392] = 1392, - [1393] = 1393, - [1394] = 1371, - [1395] = 814, + [1393] = 1337, + [1394] = 1337, + [1395] = 1395, [1396] = 1396, - [1397] = 1085, - [1398] = 1337, - [1399] = 1101, - [1400] = 1102, - [1401] = 1357, - [1402] = 1105, + [1397] = 1350, + [1398] = 1346, + [1399] = 1354, + [1400] = 1400, + [1401] = 1401, + [1402] = 1090, [1403] = 1403, - [1404] = 1404, - [1405] = 1342, - [1406] = 1341, - [1407] = 1340, - [1408] = 1338, - [1409] = 1409, - [1410] = 1336, - [1411] = 1335, - [1412] = 1334, - [1413] = 1345, - [1414] = 1361, - [1415] = 1415, - [1416] = 1343, - [1417] = 1417, + [1404] = 1085, + [1405] = 1367, + [1406] = 1406, + [1407] = 1368, + [1408] = 1371, + [1409] = 1403, + [1410] = 1410, + [1411] = 1400, + [1412] = 1392, + [1413] = 1372, + [1414] = 1374, + [1415] = 1375, + [1416] = 1334, + [1417] = 1376, [1418] = 1418, - [1419] = 1356, - [1420] = 1092, - [1421] = 1359, - [1422] = 1418, + [1419] = 1109, + [1420] = 1377, + [1421] = 1400, + [1422] = 1378, [1423] = 1423, - [1424] = 1409, + [1424] = 1424, [1425] = 1425, - [1426] = 814, - [1427] = 1409, - [1428] = 1081, - [1429] = 1418, - [1430] = 1415, - [1431] = 1095, - [1432] = 1392, - [1433] = 1391, - [1434] = 1111, - [1435] = 1362, - [1436] = 1418, - [1437] = 1437, - [1438] = 1438, - [1439] = 1409, - [1440] = 1103, - [1441] = 1109, - [1442] = 1418, - [1443] = 1396, - [1444] = 1444, - [1445] = 1445, - [1446] = 1444, - [1447] = 1444, - [1448] = 1444, - [1449] = 1445, - [1450] = 1444, - [1451] = 1445, - [1452] = 1121, - [1453] = 1445, - [1454] = 1445, - [1455] = 1455, - [1456] = 1455, - [1457] = 1455, - [1458] = 1455, - [1459] = 1455, - [1460] = 1460, - [1461] = 1461, + [1426] = 1365, + [1427] = 1364, + [1428] = 1369, + [1429] = 1079, + [1430] = 806, + [1431] = 1410, + [1432] = 1400, + [1433] = 1089, + [1434] = 1107, + [1435] = 1396, + [1436] = 1436, + [1437] = 1094, + [1438] = 1400, + [1439] = 1403, + [1440] = 1093, + [1441] = 1092, + [1442] = 1080, + [1443] = 1403, + [1444] = 1382, + [1445] = 1383, + [1446] = 1446, + [1447] = 1447, + [1448] = 1447, + [1449] = 1447, + [1450] = 1447, + [1451] = 1447, + [1452] = 1446, + [1453] = 1446, + [1454] = 1126, + [1455] = 1446, + [1456] = 1446, + [1457] = 1457, + [1458] = 1457, + [1459] = 1457, + [1460] = 1457, + [1461] = 1457, [1462] = 1462, [1463] = 1463, - [1464] = 1462, - [1465] = 1462, - [1466] = 1463, - [1467] = 1463, - [1468] = 1463, - [1469] = 1462, - [1470] = 1463, - [1471] = 1471, - [1472] = 1471, - [1473] = 1471, + [1464] = 1464, + [1465] = 1464, + [1466] = 1466, + [1467] = 1464, + [1468] = 1466, + [1469] = 1466, + [1470] = 1466, + [1471] = 1464, + [1472] = 1464, + [1473] = 1473, [1474] = 1474, - [1475] = 1471, - [1476] = 1476, - [1477] = 1477, - [1478] = 1471, + [1475] = 1474, + [1476] = 1474, + [1477] = 1474, + [1478] = 1474, [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, [1484] = 1484, - [1485] = 1481, - [1486] = 1480, - [1487] = 1481, - [1488] = 1488, - [1489] = 1489, - [1490] = 1481, - [1491] = 1480, - [1492] = 1480, - [1493] = 1480, + [1485] = 1485, + [1486] = 1482, + [1487] = 1487, + [1488] = 1484, + [1489] = 1482, + [1490] = 1490, + [1491] = 1482, + [1492] = 1492, + [1493] = 1482, [1494] = 1494, [1495] = 1495, - [1496] = 1480, - [1497] = 1497, - [1498] = 1480, + [1496] = 1484, + [1497] = 1484, + [1498] = 1498, [1499] = 1499, - [1500] = 1481, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, + [1500] = 1500, + [1501] = 1484, + [1502] = 1482, + [1503] = 1482, [1504] = 1504, - [1505] = 1505, + [1505] = 1504, [1506] = 1506, - [1507] = 1503, - [1508] = 1508, - [1509] = 1503, + [1507] = 1504, + [1508] = 1504, + [1509] = 1509, [1510] = 1510, - [1511] = 1511, - [1512] = 1503, - [1513] = 1503, + [1511] = 1504, + [1512] = 1512, + [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1516, + [1517] = 1517, [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1516, - [1522] = 1522, + [1521] = 1521, + [1522] = 1517, [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1527, + [1527] = 1517, [1528] = 1528, - [1529] = 1516, + [1529] = 1529, [1530] = 1530, - [1531] = 1516, - [1532] = 1532, - [1533] = 1533, + [1531] = 1531, + [1532] = 1517, + [1533] = 1517, [1534] = 1534, [1535] = 1535, [1536] = 1536, @@ -4636,22 +4657,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1547] = 1547, [1548] = 1548, [1549] = 1549, - [1550] = 1549, - [1551] = 1547, - [1552] = 1547, + [1550] = 1550, + [1551] = 1550, + [1552] = 1552, [1553] = 1553, - [1554] = 1547, - [1555] = 1553, - [1556] = 1553, + [1554] = 1552, + [1555] = 1552, + [1556] = 1556, [1557] = 1557, - [1558] = 1553, - [1559] = 1547, + [1558] = 1552, + [1559] = 1559, [1560] = 1553, - [1561] = 1561, - [1562] = 1548, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, + [1561] = 1552, + [1562] = 1553, + [1563] = 1559, + [1564] = 1553, + [1565] = 1553, [1566] = 1566, [1567] = 1567, [1568] = 1568, @@ -4660,33 +4681,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1566, + [1574] = 1574, [1575] = 1575, [1576] = 1576, - [1577] = 1568, + [1577] = 1577, [1578] = 1578, - [1579] = 1568, + [1579] = 1571, [1580] = 1580, - [1581] = 1568, - [1582] = 1582, - [1583] = 1568, + [1581] = 1581, + [1582] = 1571, + [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1576, + [1589] = 1589, [1590] = 1590, - [1591] = 1591, - [1592] = 1592, + [1591] = 1571, + [1592] = 1571, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1596, + [1596] = 1585, [1597] = 1597, [1598] = 1598, [1599] = 1599, - [1600] = 1600, + [1600] = 1586, [1601] = 1601, [1602] = 1602, [1603] = 1603, @@ -4712,25 +4733,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1623] = 1623, [1624] = 1624, [1625] = 1625, - [1626] = 1618, + [1626] = 1626, [1627] = 1627, [1628] = 1628, [1629] = 1629, [1630] = 1630, - [1631] = 1631, - [1632] = 1593, + [1631] = 1593, + [1632] = 1617, [1633] = 1633, [1634] = 1634, - [1635] = 1634, - [1636] = 1584, - [1637] = 1637, - [1638] = 1586, + [1635] = 1635, + [1636] = 1636, + [1637] = 1575, + [1638] = 1587, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1594, + [1642] = 1642, [1643] = 1643, - [1644] = 1644, + [1644] = 1636, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -4745,176 +4766,176 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 1640, + [1659] = 1659, [1660] = 1660, [1661] = 1661, [1662] = 1662, - [1663] = 1663, + [1663] = 1609, [1664] = 1664, - [1665] = 1664, - [1666] = 1664, + [1665] = 1665, + [1666] = 1666, [1667] = 1667, [1668] = 1668, - [1669] = 1664, + [1669] = 1669, [1670] = 1670, - [1671] = 1668, - [1672] = 1664, + [1671] = 1671, + [1672] = 1672, [1673] = 1673, [1674] = 1674, [1675] = 1675, [1676] = 1676, - [1677] = 1667, + [1677] = 1677, [1678] = 1678, [1679] = 1679, - [1680] = 1664, - [1681] = 1681, + [1680] = 1665, + [1681] = 1666, [1682] = 1682, - [1683] = 1683, + [1683] = 1676, [1684] = 1684, - [1685] = 1674, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1664, + [1685] = 1671, + [1686] = 1678, + [1687] = 1666, + [1688] = 1668, + [1689] = 1689, [1690] = 1690, [1691] = 1691, - [1692] = 1692, - [1693] = 1693, - [1694] = 1694, - [1695] = 1668, - [1696] = 1696, - [1697] = 1692, - [1698] = 1693, - [1699] = 1678, - [1700] = 1679, + [1692] = 1673, + [1693] = 1673, + [1694] = 1666, + [1695] = 1695, + [1696] = 1682, + [1697] = 1682, + [1698] = 1698, + [1699] = 1699, + [1700] = 1682, [1701] = 1701, - [1702] = 1668, - [1703] = 1674, - [1704] = 1674, - [1705] = 1667, - [1706] = 1686, - [1707] = 1686, - [1708] = 1686, - [1709] = 1664, - [1710] = 1674, - [1711] = 1711, + [1702] = 1689, + [1703] = 1665, + [1704] = 1704, + [1705] = 1705, + [1706] = 1706, + [1707] = 1678, + [1708] = 1676, + [1709] = 1673, + [1710] = 1710, + [1711] = 1622, [1712] = 1712, - [1713] = 1679, - [1714] = 1692, - [1715] = 1678, - [1716] = 1668, - [1717] = 1693, + [1713] = 1668, + [1714] = 1666, + [1715] = 1689, + [1716] = 1716, + [1717] = 1665, [1718] = 1718, - [1719] = 1674, - [1720] = 1692, - [1721] = 1721, - [1722] = 1664, - [1723] = 1723, - [1724] = 1679, - [1725] = 1678, - [1726] = 1678, - [1727] = 1679, - [1728] = 1686, - [1729] = 1693, - [1730] = 1667, - [1731] = 1731, + [1719] = 1673, + [1720] = 1689, + [1721] = 1668, + [1722] = 1671, + [1723] = 1666, + [1724] = 1671, + [1725] = 1666, + [1726] = 1689, + [1727] = 1668, + [1728] = 1666, + [1729] = 1666, + [1730] = 1730, + [1731] = 1673, [1732] = 1732, - [1733] = 1733, - [1734] = 1734, + [1733] = 1671, + [1734] = 1665, [1735] = 1735, - [1736] = 1736, - [1737] = 1737, + [1736] = 1676, + [1737] = 1678, [1738] = 1738, [1739] = 1739, [1740] = 1740, - [1741] = 1584, + [1741] = 1741, [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1740, + [1747] = 1747, [1748] = 1748, [1749] = 1749, [1750] = 1750, [1751] = 1751, [1752] = 1752, - [1753] = 1753, - [1754] = 1748, + [1753] = 1741, + [1754] = 1754, [1755] = 1755, - [1756] = 1752, + [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1754, [1759] = 1759, [1760] = 1760, - [1761] = 1732, + [1761] = 1740, [1762] = 1762, - [1763] = 1739, + [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1762, - [1767] = 1735, - [1768] = 1732, - [1769] = 1732, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1755, [1770] = 1770, - [1771] = 1758, - [1772] = 1740, - [1773] = 1759, - [1774] = 1738, - [1775] = 1737, - [1776] = 1764, + [1771] = 1749, + [1772] = 1746, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, [1777] = 1777, - [1778] = 1778, - [1779] = 1770, + [1778] = 1749, + [1779] = 1746, [1780] = 1780, [1781] = 1781, - [1782] = 1782, - [1783] = 1770, - [1784] = 1778, + [1782] = 1781, + [1783] = 1745, + [1784] = 1784, [1785] = 1785, - [1786] = 1750, - [1787] = 1787, + [1786] = 1786, + [1787] = 1757, [1788] = 1788, [1789] = 1789, [1790] = 1790, - [1791] = 1739, + [1791] = 1749, [1792] = 1792, - [1793] = 1793, - [1794] = 1743, - [1795] = 1795, + [1793] = 1745, + [1794] = 1789, + [1795] = 1751, [1796] = 1796, [1797] = 1797, - [1798] = 1798, - [1799] = 1787, - [1800] = 1797, + [1798] = 1751, + [1799] = 1799, + [1800] = 1800, [1801] = 1801, [1802] = 1802, - [1803] = 1803, + [1803] = 1593, [1804] = 1804, - [1805] = 1732, - [1806] = 1743, - [1807] = 1735, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, + [1805] = 1805, + [1806] = 1740, + [1807] = 1807, + [1808] = 1749, + [1809] = 1754, + [1810] = 1739, [1811] = 1811, [1812] = 1812, - [1813] = 1813, - [1814] = 1735, - [1815] = 1740, - [1816] = 1816, - [1817] = 1811, - [1818] = 1818, + [1813] = 1796, + [1814] = 1802, + [1815] = 1815, + [1816] = 1759, + [1817] = 1817, + [1818] = 1748, [1819] = 1819, - [1820] = 1750, - [1821] = 1813, - [1822] = 1822, - [1823] = 1734, - [1824] = 1824, - [1825] = 1825, + [1820] = 1740, + [1821] = 1790, + [1822] = 1788, + [1823] = 1770, + [1824] = 1817, + [1825] = 1741, [1826] = 1826, - [1827] = 1827, - [1828] = 1828, + [1827] = 1811, + [1828] = 1746, [1829] = 1829, [1830] = 1830, [1831] = 1831, @@ -4922,384 +4943,399 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1833] = 1833, [1834] = 1834, [1835] = 1835, - [1836] = 1832, + [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1829, - [1840] = 1830, - [1841] = 1829, + [1839] = 1839, + [1840] = 1840, + [1841] = 1836, [1842] = 1842, - [1843] = 1824, - [1844] = 1835, - [1845] = 1845, - [1846] = 1831, - [1847] = 1826, - [1848] = 1826, - [1849] = 1849, - [1850] = 1835, - [1851] = 1851, - [1852] = 1827, - [1853] = 1831, - [1854] = 1845, - [1855] = 1835, - [1856] = 1856, - [1857] = 1857, - [1858] = 1832, - [1859] = 1859, - [1860] = 1845, + [1843] = 1843, + [1844] = 1844, + [1845] = 1833, + [1846] = 1846, + [1847] = 1839, + [1848] = 1848, + [1849] = 1840, + [1850] = 1838, + [1851] = 1840, + [1852] = 1852, + [1853] = 1839, + [1854] = 1854, + [1855] = 1848, + [1856] = 1836, + [1857] = 1839, + [1858] = 1858, + [1859] = 1846, + [1860] = 1844, [1861] = 1861, - [1862] = 1845, - [1863] = 1863, - [1864] = 1864, - [1865] = 1830, - [1866] = 1832, - [1867] = 1824, - [1868] = 1824, + [1862] = 1833, + [1863] = 1846, + [1864] = 1838, + [1865] = 1865, + [1866] = 1866, + [1867] = 1837, + [1868] = 1868, [1869] = 1869, - [1870] = 1827, - [1871] = 1827, - [1872] = 1827, + [1870] = 1844, + [1871] = 1836, + [1872] = 1836, [1873] = 1873, - [1874] = 1874, + [1874] = 1837, [1875] = 1875, - [1876] = 1824, - [1877] = 1863, - [1878] = 1832, + [1876] = 1876, + [1877] = 1861, + [1878] = 1878, [1879] = 1879, - [1880] = 1837, - [1881] = 1837, - [1882] = 1830, - [1883] = 1824, - [1884] = 1835, - [1885] = 1845, - [1886] = 1886, - [1887] = 1829, - [1888] = 1833, - [1889] = 1833, - [1890] = 1833, - [1891] = 1831, - [1892] = 1892, + [1880] = 1880, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1837, + [1885] = 1834, + [1886] = 1835, + [1887] = 1887, + [1888] = 1888, + [1889] = 1839, + [1890] = 1834, + [1891] = 1839, + [1892] = 1848, [1893] = 1893, - [1894] = 1894, + [1894] = 1840, [1895] = 1895, - [1896] = 1845, - [1897] = 1897, - [1898] = 1829, - [1899] = 1837, - [1900] = 1829, + [1896] = 1834, + [1897] = 1848, + [1898] = 1898, + [1899] = 1861, + [1900] = 1844, [1901] = 1833, - [1902] = 1826, - [1903] = 1903, - [1904] = 1904, - [1905] = 1830, - [1906] = 1845, - [1907] = 1907, - [1908] = 1832, - [1909] = 1833, - [1910] = 1837, - [1911] = 1837, - [1912] = 1833, - [1913] = 1845, - [1914] = 1914, - [1915] = 1833, - [1916] = 1849, - [1917] = 1835, - [1918] = 1918, - [1919] = 1845, - [1920] = 1833, - [1921] = 1826, - [1922] = 1849, - [1923] = 1826, - [1924] = 1831, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, + [1902] = 1838, + [1903] = 1848, + [1904] = 1846, + [1905] = 1846, + [1906] = 1838, + [1907] = 1865, + [1908] = 1848, + [1909] = 1861, + [1910] = 1844, + [1911] = 1861, + [1912] = 1834, + [1913] = 1837, + [1914] = 1834, + [1915] = 1838, + [1916] = 1848, + [1917] = 1917, + [1918] = 1840, + [1919] = 1919, + [1920] = 1865, + [1921] = 1861, + [1922] = 1846, + [1923] = 1833, + [1924] = 1848, + [1925] = 1861, + [1926] = 1844, + [1927] = 1836, + [1928] = 1861, + [1929] = 1861, + [1930] = 1848, [1931] = 1931, [1932] = 1932, [1933] = 1933, [1934] = 1934, - [1935] = 1928, - [1936] = 1933, + [1935] = 1935, + [1936] = 1936, [1937] = 1937, - [1938] = 1938, + [1938] = 1936, [1939] = 1939, - [1940] = 1940, - [1941] = 1934, - [1942] = 1942, - [1943] = 1943, - [1944] = 1928, - [1945] = 1945, - [1946] = 1933, - [1947] = 1947, - [1948] = 1934, - [1949] = 1949, - [1950] = 1928, - [1951] = 1945, - [1952] = 1933, - [1953] = 1947, - [1954] = 1934, + [1940] = 1934, + [1941] = 1935, + [1942] = 1936, + [1943] = 1937, + [1944] = 1944, + [1945] = 1939, + [1946] = 1935, + [1947] = 1937, + [1948] = 1948, + [1949] = 1939, + [1950] = 1935, + [1951] = 1937, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, [1955] = 1955, [1956] = 1956, - [1957] = 1957, + [1957] = 1935, [1958] = 1958, - [1959] = 1959, + [1959] = 1934, [1960] = 1960, [1961] = 1961, [1962] = 1962, [1963] = 1963, [1964] = 1964, - [1965] = 1965, + [1965] = 1931, [1966] = 1966, - [1967] = 1967, + [1967] = 1939, [1968] = 1968, - [1969] = 1945, + [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1973, + [1973] = 1961, [1974] = 1974, - [1975] = 1975, - [1976] = 1926, + [1975] = 1935, + [1976] = 1976, [1977] = 1977, - [1978] = 1978, - [1979] = 1979, + [1978] = 1369, + [1979] = 1955, [1980] = 1980, [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1928, - [1985] = 1985, - [1986] = 1986, - [1987] = 1987, - [1988] = 1945, - [1989] = 1956, - [1990] = 1933, + [1982] = 1937, + [1983] = 1944, + [1984] = 1936, + [1985] = 1974, + [1986] = 1948, + [1987] = 1937, + [1988] = 1962, + [1989] = 1962, + [1990] = 1948, [1991] = 1991, [1992] = 1992, [1993] = 1993, - [1994] = 1947, - [1995] = 1995, - [1996] = 1996, - [1997] = 1359, + [1994] = 1994, + [1995] = 1958, + [1996] = 1937, + [1997] = 1980, [1998] = 1998, [1999] = 1999, - [2000] = 1927, + [2000] = 2000, [2001] = 2001, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, + [2002] = 1934, + [2003] = 1991, + [2004] = 1936, + [2005] = 1993, [2006] = 2006, - [2007] = 1934, - [2008] = 1931, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 1959, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, + [2007] = 1396, + [2008] = 1980, + [2009] = 1955, + [2010] = 1935, + [2011] = 1934, + [2012] = 1354, + [2013] = 1960, + [2014] = 1953, + [2015] = 1954, + [2016] = 1961, + [2017] = 1976, [2018] = 2018, - [2019] = 1966, - [2020] = 1937, - [2021] = 1968, - [2022] = 2022, - [2023] = 1972, - [2024] = 2024, - [2025] = 2025, + [2019] = 1963, + [2020] = 1964, + [2021] = 2021, + [2022] = 1933, + [2023] = 1956, + [2024] = 1939, + [2025] = 1976, [2026] = 2026, - [2027] = 1999, - [2028] = 1927, + [2027] = 2006, + [2028] = 2018, [2029] = 2029, - [2030] = 1973, - [2031] = 2029, - [2032] = 2032, - [2033] = 1965, - [2034] = 1970, - [2035] = 1931, - [2036] = 775, - [2037] = 2032, + [2030] = 2030, + [2031] = 1968, + [2032] = 1969, + [2033] = 1970, + [2034] = 1981, + [2035] = 1961, + [2036] = 1944, + [2037] = 2037, [2038] = 2038, [2039] = 2039, [2040] = 2040, [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 776, - [2045] = 1966, - [2046] = 2046, - [2047] = 1968, - [2048] = 1979, - [2049] = 1977, - [2050] = 1983, - [2051] = 1928, - [2052] = 1959, - [2053] = 1999, - [2054] = 1927, + [2042] = 1953, + [2043] = 1954, + [2044] = 2044, + [2045] = 2045, + [2046] = 1971, + [2047] = 2047, + [2048] = 1960, + [2049] = 2049, + [2050] = 1956, + [2051] = 1977, + [2052] = 1971, + [2053] = 2021, + [2054] = 2054, [2055] = 2055, - [2056] = 2056, - [2057] = 2013, - [2058] = 1945, - [2059] = 1931, - [2060] = 2060, - [2061] = 1965, - [2062] = 2012, - [2063] = 2010, - [2064] = 2005, - [2065] = 1933, - [2066] = 1934, - [2067] = 2067, - [2068] = 1356, - [2069] = 2006, - [2070] = 1999, - [2071] = 1999, - [2072] = 1947, - [2073] = 1995, - [2074] = 1999, - [2075] = 1999, - [2076] = 1999, - [2077] = 1996, - [2078] = 2005, - [2079] = 2003, - [2080] = 1996, - [2081] = 2081, - [2082] = 1995, - [2083] = 2003, + [2056] = 2006, + [2057] = 2057, + [2058] = 2058, + [2059] = 2029, + [2060] = 1981, + [2061] = 2054, + [2062] = 1944, + [2063] = 2063, + [2064] = 2021, + [2065] = 2065, + [2066] = 2066, + [2067] = 2049, + [2068] = 1953, + [2069] = 1954, + [2070] = 2070, + [2071] = 1976, + [2072] = 2072, + [2073] = 2073, + [2074] = 1956, + [2075] = 1980, + [2076] = 1993, + [2077] = 2047, + [2078] = 2078, + [2079] = 1962, + [2080] = 1939, + [2081] = 1948, + [2082] = 1937, + [2083] = 1364, [2084] = 2084, - [2085] = 1959, - [2086] = 2086, - [2087] = 2087, - [2088] = 2006, - [2089] = 1970, - [2090] = 1947, - [2091] = 2006, + [2085] = 2085, + [2086] = 1953, + [2087] = 1936, + [2088] = 2088, + [2089] = 1953, + [2090] = 1953, + [2091] = 1953, [2092] = 2092, - [2093] = 2093, - [2094] = 2041, + [2093] = 1955, + [2094] = 1935, [2095] = 2095, - [2096] = 1934, + [2096] = 2096, [2097] = 2097, - [2098] = 2010, - [2099] = 1933, - [2100] = 1956, - [2101] = 2012, - [2102] = 2013, - [2103] = 1959, - [2104] = 2104, - [2105] = 1966, - [2106] = 1968, - [2107] = 1937, - [2108] = 1972, - [2109] = 1977, - [2110] = 1983, + [2098] = 2098, + [2099] = 2099, + [2100] = 2054, + [2101] = 1944, + [2102] = 1934, + [2103] = 1931, + [2104] = 1970, + [2105] = 2105, + [2106] = 1969, + [2107] = 2070, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, [2111] = 2111, [2112] = 2112, - [2113] = 1928, - [2114] = 1945, - [2115] = 1973, - [2116] = 1362, - [2117] = 2029, - [2118] = 2118, - [2119] = 2032, - [2120] = 1965, + [2113] = 1963, + [2114] = 2114, + [2115] = 1964, + [2116] = 1960, + [2117] = 2117, + [2118] = 1971, + [2119] = 2119, + [2120] = 1968, [2121] = 2121, [2122] = 2122, - [2123] = 1928, - [2124] = 2112, - [2125] = 1970, - [2126] = 2111, - [2127] = 2118, - [2128] = 2018, - [2129] = 1945, + [2123] = 2112, + [2124] = 2049, + [2125] = 2125, + [2126] = 1999, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, [2130] = 2130, - [2131] = 1968, - [2132] = 1983, - [2133] = 2081, - [2134] = 2041, - [2135] = 1977, - [2136] = 2104, - [2137] = 2092, + [2131] = 2131, + [2132] = 2132, + [2133] = 1952, + [2134] = 1939, + [2135] = 1966, + [2136] = 1931, + [2137] = 1963, [2138] = 2138, - [2139] = 1977, - [2140] = 1983, - [2141] = 2141, - [2142] = 1928, - [2143] = 2143, - [2144] = 2041, - [2145] = 2092, - [2146] = 1970, - [2147] = 1945, - [2148] = 2148, - [2149] = 2149, + [2139] = 2139, + [2140] = 1964, + [2141] = 1931, + [2142] = 1931, + [2143] = 2063, + [2144] = 1939, + [2145] = 1966, + [2146] = 1981, + [2147] = 2147, + [2148] = 2096, + [2149] = 1964, [2150] = 2150, - [2151] = 1968, - [2152] = 1956, - [2153] = 2092, + [2151] = 2151, + [2152] = 2070, + [2153] = 1939, [2154] = 2154, - [2155] = 1962, - [2156] = 1965, - [2157] = 1933, - [2158] = 2056, - [2159] = 1357, - [2160] = 2081, - [2161] = 2097, - [2162] = 1956, - [2163] = 2006, - [2164] = 2164, - [2165] = 1947, - [2166] = 1933, - [2167] = 2032, - [2168] = 2029, - [2169] = 1999, - [2170] = 1995, - [2171] = 1996, - [2172] = 2092, - [2173] = 2022, - [2174] = 1947, - [2175] = 1995, - [2176] = 2003, - [2177] = 2005, - [2178] = 1996, + [2155] = 2155, + [2156] = 777, + [2157] = 2157, + [2158] = 2047, + [2159] = 2159, + [2160] = 2070, + [2161] = 1968, + [2162] = 1963, + [2163] = 2163, + [2164] = 1971, + [2165] = 2165, + [2166] = 2166, + [2167] = 1960, + [2168] = 2070, + [2169] = 2078, + [2170] = 1934, + [2171] = 1968, + [2172] = 1969, + [2173] = 778, + [2174] = 2174, + [2175] = 2096, + [2176] = 2176, + [2177] = 2177, + [2178] = 1931, [2179] = 2179, - [2180] = 1973, - [2181] = 1972, - [2182] = 2006, - [2183] = 2067, - [2184] = 1934, - [2185] = 2003, - [2186] = 1937, - [2187] = 2005, - [2188] = 2010, - [2189] = 2189, - [2190] = 1932, - [2191] = 2006, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 1970, + [2184] = 1961, + [2185] = 1962, + [2186] = 2047, + [2187] = 2187, + [2188] = 2188, + [2189] = 2049, + [2190] = 1944, + [2191] = 2191, [2192] = 2192, - [2193] = 2193, - [2194] = 2084, - [2195] = 1931, - [2196] = 2012, - [2197] = 2006, - [2198] = 2013, - [2199] = 2081, - [2200] = 2067, - [2201] = 1959, - [2202] = 1934, - [2203] = 2081, - [2204] = 2010, - [2205] = 1993, - [2206] = 2081, + [2193] = 2099, + [2194] = 1956, + [2195] = 1969, + [2196] = 1970, + [2197] = 2096, + [2198] = 2054, + [2199] = 1961, + [2200] = 2006, + [2201] = 1948, + [2202] = 2202, + [2203] = 2021, + [2204] = 1937, + [2205] = 1955, + [2206] = 2206, [2207] = 2207, - [2208] = 2012, + [2208] = 1976, [2209] = 2209, - [2210] = 2193, - [2211] = 2013, - [2212] = 1927, - [2213] = 2192, + [2210] = 1935, + [2211] = 2211, + [2212] = 1931, + [2213] = 1936, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2096, + [2219] = 1980, + [2220] = 2220, + [2221] = 2096, + [2222] = 2084, + [2223] = 1954, + [2224] = 1993, + [2225] = 2192, + [2226] = 1936, + [2227] = 1953, + [2228] = 2191, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9112,19 +9148,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 17: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) END_STATE(); case 18: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) if (lookahead == '\r') SKIP(17) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); END_STATE(); case 19: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) END_STATE(); case 20: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) if (lookahead == '\r') SKIP(19) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); @@ -9786,7 +9822,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(20); + if (lookahead == '\\') ADVANCE(18); if (lookahead == '}') ADVANCE(257); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) @@ -9796,7 +9832,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '\\') ADVANCE(20); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71) END_STATE(); @@ -13167,9 +13203,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9] = {.lex_state = 55}, [10] = {.lex_state = 55}, [11] = {.lex_state = 55}, - [12] = {.lex_state = 55}, + [12] = {.lex_state = 58}, [13] = {.lex_state = 58}, - [14] = {.lex_state = 58}, + [14] = {.lex_state = 55}, [15] = {.lex_state = 58}, [16] = {.lex_state = 58}, [17] = {.lex_state = 58}, @@ -13185,12 +13221,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 58}, [28] = {.lex_state = 140}, [29] = {.lex_state = 140}, - [30] = {.lex_state = 57}, + [30] = {.lex_state = 140}, [31] = {.lex_state = 140}, [32] = {.lex_state = 140}, [33] = {.lex_state = 140}, [34] = {.lex_state = 140}, - [35] = {.lex_state = 140}, + [35] = {.lex_state = 57}, [36] = {.lex_state = 140}, [37] = {.lex_state = 140}, [38] = {.lex_state = 140}, @@ -13200,13 +13236,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 140}, [43] = {.lex_state = 140}, [44] = {.lex_state = 140}, - [45] = {.lex_state = 57}, + [45] = {.lex_state = 140}, [46] = {.lex_state = 140}, [47] = {.lex_state = 140}, [48] = {.lex_state = 140}, [49] = {.lex_state = 140}, [50] = {.lex_state = 140}, - [51] = {.lex_state = 140}, + [51] = {.lex_state = 57}, [52] = {.lex_state = 140}, [53] = {.lex_state = 140}, [54] = {.lex_state = 55}, @@ -13220,19 +13256,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 58}, [63] = {.lex_state = 58}, [64] = {.lex_state = 140}, - [65] = {.lex_state = 57}, - [66] = {.lex_state = 57}, - [67] = {.lex_state = 140}, + [65] = {.lex_state = 140}, + [66] = {.lex_state = 140}, + [67] = {.lex_state = 57}, [68] = {.lex_state = 140}, [69] = {.lex_state = 140}, - [70] = {.lex_state = 57}, + [70] = {.lex_state = 140}, [71] = {.lex_state = 57}, [72] = {.lex_state = 140}, - [73] = {.lex_state = 140}, + [73] = {.lex_state = 57}, [74] = {.lex_state = 140}, - [75] = {.lex_state = 140}, - [76] = {.lex_state = 57}, - [77] = {.lex_state = 140}, + [75] = {.lex_state = 57}, + [76] = {.lex_state = 140}, + [77] = {.lex_state = 57}, [78] = {.lex_state = 140}, [79] = {.lex_state = 140}, [80] = {.lex_state = 140}, @@ -13248,19 +13284,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 55}, [91] = {.lex_state = 55}, [92] = {.lex_state = 55}, - [93] = {.lex_state = 140}, - [94] = {.lex_state = 55}, + [93] = {.lex_state = 55}, + [94] = {.lex_state = 140}, [95] = {.lex_state = 55}, [96] = {.lex_state = 55}, [97] = {.lex_state = 55}, [98] = {.lex_state = 55}, [99] = {.lex_state = 55}, [100] = {.lex_state = 55}, - [101] = {.lex_state = 140}, + [101] = {.lex_state = 55}, [102] = {.lex_state = 55}, [103] = {.lex_state = 55}, [104] = {.lex_state = 55}, - [105] = {.lex_state = 55}, + [105] = {.lex_state = 140}, [106] = {.lex_state = 55}, [107] = {.lex_state = 55}, [108] = {.lex_state = 55}, @@ -13301,10 +13337,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [143] = {.lex_state = 55}, [144] = {.lex_state = 55}, [145] = {.lex_state = 55}, - [146] = {.lex_state = 58}, + [146] = {.lex_state = 55}, [147] = {.lex_state = 55}, [148] = {.lex_state = 55}, - [149] = {.lex_state = 55}, + [149] = {.lex_state = 58}, [150] = {.lex_state = 55}, [151] = {.lex_state = 55}, [152] = {.lex_state = 55}, @@ -13358,19 +13394,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 58}, [201] = {.lex_state = 58}, [202] = {.lex_state = 58}, - [203] = {.lex_state = 140}, - [204] = {.lex_state = 58}, + [203] = {.lex_state = 58}, + [204] = {.lex_state = 140}, [205] = {.lex_state = 58}, [206] = {.lex_state = 58}, [207] = {.lex_state = 58}, [208] = {.lex_state = 58}, [209] = {.lex_state = 58}, - [210] = {.lex_state = 58}, + [210] = {.lex_state = 140}, [211] = {.lex_state = 58}, - [212] = {.lex_state = 140}, + [212] = {.lex_state = 58}, [213] = {.lex_state = 58}, [214] = {.lex_state = 58}, - [215] = {.lex_state = 57}, + [215] = {.lex_state = 58}, [216] = {.lex_state = 58}, [217] = {.lex_state = 58}, [218] = {.lex_state = 58}, @@ -13383,11 +13419,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 58}, [226] = {.lex_state = 58}, [227] = {.lex_state = 58}, - [228] = {.lex_state = 58}, + [228] = {.lex_state = 57}, [229] = {.lex_state = 58}, [230] = {.lex_state = 58}, [231] = {.lex_state = 140}, - [232] = {.lex_state = 57}, + [232] = {.lex_state = 140}, [233] = {.lex_state = 140}, [234] = {.lex_state = 140}, [235] = {.lex_state = 140}, @@ -13395,7 +13431,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 140}, [238] = {.lex_state = 140}, [239] = {.lex_state = 140}, - [240] = {.lex_state = 53}, + [240] = {.lex_state = 140}, [241] = {.lex_state = 140}, [242] = {.lex_state = 140}, [243] = {.lex_state = 140}, @@ -13418,19 +13454,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 140}, [261] = {.lex_state = 140}, [262] = {.lex_state = 140}, - [263] = {.lex_state = 140}, + [263] = {.lex_state = 57}, [264] = {.lex_state = 140}, - [265] = {.lex_state = 140}, + [265] = {.lex_state = 57}, [266] = {.lex_state = 140}, - [267] = {.lex_state = 140}, - [268] = {.lex_state = 140}, - [269] = {.lex_state = 53}, + [267] = {.lex_state = 57}, + [268] = {.lex_state = 57}, + [269] = {.lex_state = 57}, [270] = {.lex_state = 140}, - [271] = {.lex_state = 140}, + [271] = {.lex_state = 57}, [272] = {.lex_state = 57}, [273] = {.lex_state = 57}, - [274] = {.lex_state = 140}, - [275] = {.lex_state = 140}, + [274] = {.lex_state = 57}, + [275] = {.lex_state = 57}, [276] = {.lex_state = 140}, [277] = {.lex_state = 140}, [278] = {.lex_state = 140}, @@ -13439,9 +13475,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [281] = {.lex_state = 140}, [282] = {.lex_state = 140}, [283] = {.lex_state = 140}, - [284] = {.lex_state = 57}, - [285] = {.lex_state = 140}, - [286] = {.lex_state = 140}, + [284] = {.lex_state = 140}, + [285] = {.lex_state = 57}, + [286] = {.lex_state = 57}, [287] = {.lex_state = 140}, [288] = {.lex_state = 140}, [289] = {.lex_state = 140}, @@ -13450,117 +13486,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [292] = {.lex_state = 140}, [293] = {.lex_state = 57}, [294] = {.lex_state = 140}, - [295] = {.lex_state = 57}, - [296] = {.lex_state = 140}, - [297] = {.lex_state = 57}, + [295] = {.lex_state = 140}, + [296] = {.lex_state = 57}, + [297] = {.lex_state = 140}, [298] = {.lex_state = 140}, [299] = {.lex_state = 57}, - [300] = {.lex_state = 140}, + [300] = {.lex_state = 57}, [301] = {.lex_state = 140}, - [302] = {.lex_state = 140}, + [302] = {.lex_state = 57}, [303] = {.lex_state = 140}, - [304] = {.lex_state = 57}, - [305] = {.lex_state = 57}, + [304] = {.lex_state = 53}, + [305] = {.lex_state = 140}, [306] = {.lex_state = 140}, [307] = {.lex_state = 140}, - [308] = {.lex_state = 140}, + [308] = {.lex_state = 57}, [309] = {.lex_state = 57}, [310] = {.lex_state = 57}, [311] = {.lex_state = 140}, [312] = {.lex_state = 57}, [313] = {.lex_state = 57}, - [314] = {.lex_state = 57}, + [314] = {.lex_state = 53}, [315] = {.lex_state = 140}, [316] = {.lex_state = 57}, [317] = {.lex_state = 57}, - [318] = {.lex_state = 140}, + [318] = {.lex_state = 57}, [319] = {.lex_state = 140}, - [320] = {.lex_state = 140}, - [321] = {.lex_state = 140}, + [320] = {.lex_state = 57}, + [321] = {.lex_state = 57}, [322] = {.lex_state = 57}, - [323] = {.lex_state = 57}, - [324] = {.lex_state = 57}, + [323] = {.lex_state = 140}, + [324] = {.lex_state = 140}, [325] = {.lex_state = 57}, - [326] = {.lex_state = 57}, - [327] = {.lex_state = 140}, + [326] = {.lex_state = 140}, + [327] = {.lex_state = 57}, [328] = {.lex_state = 57}, - [329] = {.lex_state = 57}, + [329] = {.lex_state = 140}, [330] = {.lex_state = 57}, [331] = {.lex_state = 57}, - [332] = {.lex_state = 140}, + [332] = {.lex_state = 57}, [333] = {.lex_state = 140}, [334] = {.lex_state = 57}, [335] = {.lex_state = 57}, [336] = {.lex_state = 57}, - [337] = {.lex_state = 140}, + [337] = {.lex_state = 57}, [338] = {.lex_state = 57}, - [339] = {.lex_state = 57}, - [340] = {.lex_state = 57}, + [339] = {.lex_state = 140}, + [340] = {.lex_state = 140}, [341] = {.lex_state = 57}, - [342] = {.lex_state = 57}, + [342] = {.lex_state = 140}, [343] = {.lex_state = 57}, - [344] = {.lex_state = 57}, - [345] = {.lex_state = 57}, - [346] = {.lex_state = 57}, + [344] = {.lex_state = 140}, + [345] = {.lex_state = 140}, + [346] = {.lex_state = 140}, [347] = {.lex_state = 140}, - [348] = {.lex_state = 57}, + [348] = {.lex_state = 140}, [349] = {.lex_state = 140}, - [350] = {.lex_state = 57}, - [351] = {.lex_state = 57}, + [350] = {.lex_state = 140}, + [351] = {.lex_state = 140}, [352] = {.lex_state = 140}, [353] = {.lex_state = 140}, - [354] = {.lex_state = 140}, - [355] = {.lex_state = 57}, + [354] = {.lex_state = 57}, + [355] = {.lex_state = 140}, [356] = {.lex_state = 57}, [357] = {.lex_state = 140}, - [358] = {.lex_state = 140}, + [358] = {.lex_state = 57}, [359] = {.lex_state = 57}, - [360] = {.lex_state = 140}, + [360] = {.lex_state = 57}, [361] = {.lex_state = 57}, [362] = {.lex_state = 140}, - [363] = {.lex_state = 57}, + [363] = {.lex_state = 140}, [364] = {.lex_state = 140}, [365] = {.lex_state = 57}, - [366] = {.lex_state = 140}, + [366] = {.lex_state = 57}, [367] = {.lex_state = 57}, - [368] = {.lex_state = 140}, + [368] = {.lex_state = 57}, [369] = {.lex_state = 57}, [370] = {.lex_state = 57}, - [371] = {.lex_state = 57}, - [372] = {.lex_state = 140}, - [373] = {.lex_state = 140}, + [371] = {.lex_state = 140}, + [372] = {.lex_state = 57}, + [373] = {.lex_state = 57}, [374] = {.lex_state = 57}, [375] = {.lex_state = 140}, - [376] = {.lex_state = 57}, - [377] = {.lex_state = 140}, + [376] = {.lex_state = 140}, + [377] = {.lex_state = 57}, [378] = {.lex_state = 57}, [379] = {.lex_state = 140}, - [380] = {.lex_state = 57}, - [381] = {.lex_state = 140}, + [380] = {.lex_state = 140}, + [381] = {.lex_state = 57}, [382] = {.lex_state = 140}, [383] = {.lex_state = 140}, [384] = {.lex_state = 140}, [385] = {.lex_state = 140}, - [386] = {.lex_state = 57}, - [387] = {.lex_state = 57}, - [388] = {.lex_state = 57}, + [386] = {.lex_state = 140}, + [387] = {.lex_state = 140}, + [388] = {.lex_state = 140}, [389] = {.lex_state = 140}, - [390] = {.lex_state = 57}, + [390] = {.lex_state = 140}, [391] = {.lex_state = 140}, - [392] = {.lex_state = 57}, + [392] = {.lex_state = 140}, [393] = {.lex_state = 57}, - [394] = {.lex_state = 57}, - [395] = {.lex_state = 57}, - [396] = {.lex_state = 140}, - [397] = {.lex_state = 140}, - [398] = {.lex_state = 140}, - [399] = {.lex_state = 57}, - [400] = {.lex_state = 57}, - [401] = {.lex_state = 140}, + [394] = {.lex_state = 140}, + [395] = {.lex_state = 140}, + [396] = {.lex_state = 57}, + [397] = {.lex_state = 57}, + [398] = {.lex_state = 57}, + [399] = {.lex_state = 140}, + [400] = {.lex_state = 140}, + [401] = {.lex_state = 57}, [402] = {.lex_state = 57}, [403] = {.lex_state = 140}, [404] = {.lex_state = 57}, - [405] = {.lex_state = 140}, + [405] = {.lex_state = 57}, [406] = {.lex_state = 140}, [407] = {.lex_state = 140}, [408] = {.lex_state = 140}, @@ -13590,7 +13626,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [432] = {.lex_state = 140}, [433] = {.lex_state = 140}, [434] = {.lex_state = 140}, - [435] = {.lex_state = 140}, + [435] = {.lex_state = 54}, [436] = {.lex_state = 140}, [437] = {.lex_state = 140}, [438] = {.lex_state = 140}, @@ -13603,7 +13639,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 140}, [446] = {.lex_state = 140}, [447] = {.lex_state = 140}, - [448] = {.lex_state = 54}, + [448] = {.lex_state = 140}, [449] = {.lex_state = 140}, [450] = {.lex_state = 140}, [451] = {.lex_state = 140}, @@ -13612,7 +13648,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [454] = {.lex_state = 140}, [455] = {.lex_state = 140}, [456] = {.lex_state = 140}, - [457] = {.lex_state = 140}, + [457] = {.lex_state = 53}, [458] = {.lex_state = 140}, [459] = {.lex_state = 140}, [460] = {.lex_state = 140}, @@ -13620,7 +13656,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [462] = {.lex_state = 140}, [463] = {.lex_state = 140}, [464] = {.lex_state = 140}, - [465] = {.lex_state = 53}, + [465] = {.lex_state = 140}, [466] = {.lex_state = 140}, [467] = {.lex_state = 140}, [468] = {.lex_state = 140}, @@ -13693,9 +13729,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [535] = {.lex_state = 64}, [536] = {.lex_state = 64}, [537] = {.lex_state = 64}, - [538] = {.lex_state = 64}, + [538] = {.lex_state = 140}, [539] = {.lex_state = 64}, - [540] = {.lex_state = 140}, + [540] = {.lex_state = 64}, [541] = {.lex_state = 64}, [542] = {.lex_state = 64}, [543] = {.lex_state = 64}, @@ -13705,51 +13741,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 65}, [548] = {.lex_state = 65}, [549] = {.lex_state = 65}, - [550] = {.lex_state = 64}, + [550] = {.lex_state = 65}, [551] = {.lex_state = 65}, - [552] = {.lex_state = 65}, + [552] = {.lex_state = 64}, [553] = {.lex_state = 65}, [554] = {.lex_state = 65}, - [555] = {.lex_state = 140}, - [556] = {.lex_state = 140}, - [557] = {.lex_state = 65}, + [555] = {.lex_state = 65}, + [556] = {.lex_state = 65}, + [557] = {.lex_state = 140}, [558] = {.lex_state = 140}, - [559] = {.lex_state = 140}, + [559] = {.lex_state = 65}, [560] = {.lex_state = 140}, - [561] = {.lex_state = 71}, - [562] = {.lex_state = 140}, + [561] = {.lex_state = 140}, + [562] = {.lex_state = 70}, [563] = {.lex_state = 140}, [564] = {.lex_state = 140}, - [565] = {.lex_state = 140}, - [566] = {.lex_state = 140}, + [565] = {.lex_state = 70}, + [566] = {.lex_state = 71}, [567] = {.lex_state = 140}, [568] = {.lex_state = 140}, [569] = {.lex_state = 140}, - [570] = {.lex_state = 140}, + [570] = {.lex_state = 71}, [571] = {.lex_state = 140}, [572] = {.lex_state = 140}, [573] = {.lex_state = 140}, [574] = {.lex_state = 140}, - [575] = {.lex_state = 70}, + [575] = {.lex_state = 140}, [576] = {.lex_state = 140}, [577] = {.lex_state = 140}, [578] = {.lex_state = 140}, [579] = {.lex_state = 140}, - [580] = {.lex_state = 71}, + [580] = {.lex_state = 140}, [581] = {.lex_state = 140}, [582] = {.lex_state = 140}, [583] = {.lex_state = 140}, [584] = {.lex_state = 140}, [585] = {.lex_state = 140}, - [586] = {.lex_state = 71}, + [586] = {.lex_state = 140}, [587] = {.lex_state = 140}, - [588] = {.lex_state = 70}, + [588] = {.lex_state = 140}, [589] = {.lex_state = 70}, - [590] = {.lex_state = 140}, + [590] = {.lex_state = 71}, [591] = {.lex_state = 140}, [592] = {.lex_state = 140}, [593] = {.lex_state = 140}, - [594] = {.lex_state = 64}, + [594] = {.lex_state = 140}, [595] = {.lex_state = 140}, [596] = {.lex_state = 140}, [597] = {.lex_state = 140}, @@ -13757,7 +13793,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [599] = {.lex_state = 140}, [600] = {.lex_state = 140}, [601] = {.lex_state = 140}, - [602] = {.lex_state = 140}, + [602] = {.lex_state = 64}, [603] = {.lex_state = 140}, [604] = {.lex_state = 140}, [605] = {.lex_state = 140}, @@ -13798,7 +13834,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [640] = {.lex_state = 140}, [641] = {.lex_state = 140}, [642] = {.lex_state = 140}, - [643] = {.lex_state = 140}, + [643] = {.lex_state = 60}, [644] = {.lex_state = 140}, [645] = {.lex_state = 140}, [646] = {.lex_state = 140}, @@ -13827,7 +13863,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 140}, [670] = {.lex_state = 140}, [671] = {.lex_state = 140}, - [672] = {.lex_state = 60}, + [672] = {.lex_state = 140}, [673] = {.lex_state = 140}, [674] = {.lex_state = 140}, [675] = {.lex_state = 140}, @@ -13920,20 +13956,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 140}, [763] = {.lex_state = 140}, [764] = {.lex_state = 140}, - [765] = {.lex_state = 64}, - [766] = {.lex_state = 60}, + [765] = {.lex_state = 140}, + [766] = {.lex_state = 140}, [767] = {.lex_state = 64}, - [768] = {.lex_state = 60}, - [769] = {.lex_state = 64}, + [768] = {.lex_state = 64}, + [769] = {.lex_state = 60}, [770] = {.lex_state = 64}, - [771] = {.lex_state = 60}, + [771] = {.lex_state = 64}, [772] = {.lex_state = 64}, [773] = {.lex_state = 60}, [774] = {.lex_state = 60}, [775] = {.lex_state = 60}, [776] = {.lex_state = 60}, - [777] = {.lex_state = 62}, - [778] = {.lex_state = 62}, + [777] = {.lex_state = 60}, + [778] = {.lex_state = 60}, [779] = {.lex_state = 62}, [780] = {.lex_state = 62}, [781] = {.lex_state = 62}, @@ -13942,130 +13978,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [784] = {.lex_state = 62}, [785] = {.lex_state = 62}, [786] = {.lex_state = 62}, - [787] = {.lex_state = 140}, + [787] = {.lex_state = 62}, [788] = {.lex_state = 62}, [789] = {.lex_state = 140}, [790] = {.lex_state = 140}, - [791] = {.lex_state = 64}, + [791] = {.lex_state = 140}, [792] = {.lex_state = 62}, - [793] = {.lex_state = 62}, - [794] = {.lex_state = 62}, - [795] = {.lex_state = 64}, - [796] = {.lex_state = 64}, - [797] = {.lex_state = 62}, - [798] = {.lex_state = 64}, - [799] = {.lex_state = 64}, - [800] = {.lex_state = 64}, - [801] = {.lex_state = 62}, + [793] = {.lex_state = 64}, + [794] = {.lex_state = 64}, + [795] = {.lex_state = 62}, + [796] = {.lex_state = 62}, + [797] = {.lex_state = 64}, + [798] = {.lex_state = 62}, + [799] = {.lex_state = 62}, + [800] = {.lex_state = 62}, + [801] = {.lex_state = 64}, [802] = {.lex_state = 62}, [803] = {.lex_state = 64}, [804] = {.lex_state = 64}, [805] = {.lex_state = 64}, - [806] = {.lex_state = 64}, - [807] = {.lex_state = 62}, - [808] = {.lex_state = 64}, - [809] = {.lex_state = 64}, - [810] = {.lex_state = 64}, - [811] = {.lex_state = 64}, - [812] = {.lex_state = 62}, + [806] = {.lex_state = 62}, + [807] = {.lex_state = 64}, + [808] = {.lex_state = 62}, + [809] = {.lex_state = 62}, + [810] = {.lex_state = 62}, + [811] = {.lex_state = 62}, + [812] = {.lex_state = 64}, [813] = {.lex_state = 64}, - [814] = {.lex_state = 62}, - [815] = {.lex_state = 64}, + [814] = {.lex_state = 64}, + [815] = {.lex_state = 62}, [816] = {.lex_state = 64}, - [817] = {.lex_state = 62}, + [817] = {.lex_state = 64}, [818] = {.lex_state = 64}, [819] = {.lex_state = 62}, [820] = {.lex_state = 62}, - [821] = {.lex_state = 62}, + [821] = {.lex_state = 64}, [822] = {.lex_state = 64}, [823] = {.lex_state = 64}, [824] = {.lex_state = 62}, [825] = {.lex_state = 64}, [826] = {.lex_state = 64}, - [827] = {.lex_state = 62}, - [828] = {.lex_state = 62}, - [829] = {.lex_state = 63}, - [830] = {.lex_state = 64}, + [827] = {.lex_state = 64}, + [828] = {.lex_state = 64}, + [829] = {.lex_state = 64}, + [830] = {.lex_state = 62}, [831] = {.lex_state = 62}, [832] = {.lex_state = 62}, - [833] = {.lex_state = 64}, - [834] = {.lex_state = 63}, - [835] = {.lex_state = 64}, - [836] = {.lex_state = 62}, + [833] = {.lex_state = 63}, + [834] = {.lex_state = 64}, + [835] = {.lex_state = 62}, + [836] = {.lex_state = 63}, [837] = {.lex_state = 62}, - [838] = {.lex_state = 62}, - [839] = {.lex_state = 60}, - [840] = {.lex_state = 63}, + [838] = {.lex_state = 60}, + [839] = {.lex_state = 63}, + [840] = {.lex_state = 64}, [841] = {.lex_state = 63}, [842] = {.lex_state = 62}, - [843] = {.lex_state = 61}, - [844] = {.lex_state = 61}, + [843] = {.lex_state = 62}, + [844] = {.lex_state = 64}, [845] = {.lex_state = 61}, - [846] = {.lex_state = 60}, + [846] = {.lex_state = 61}, [847] = {.lex_state = 61}, - [848] = {.lex_state = 140}, + [848] = {.lex_state = 60}, [849] = {.lex_state = 61}, [850] = {.lex_state = 61}, - [851] = {.lex_state = 64}, - [852] = {.lex_state = 64}, + [851] = {.lex_state = 61}, + [852] = {.lex_state = 140}, [853] = {.lex_state = 64}, - [854] = {.lex_state = 61}, - [855] = {.lex_state = 61}, + [854] = {.lex_state = 64}, + [855] = {.lex_state = 64}, [856] = {.lex_state = 64}, - [857] = {.lex_state = 64}, - [858] = {.lex_state = 64}, + [857] = {.lex_state = 61}, + [858] = {.lex_state = 61}, [859] = {.lex_state = 64}, [860] = {.lex_state = 64}, [861] = {.lex_state = 64}, [862] = {.lex_state = 64}, [863] = {.lex_state = 64}, - [864] = {.lex_state = 60}, + [864] = {.lex_state = 64}, [865] = {.lex_state = 60}, - [866] = {.lex_state = 140}, - [867] = {.lex_state = 60}, - [868] = {.lex_state = 64}, + [866] = {.lex_state = 60}, + [867] = {.lex_state = 64}, + [868] = {.lex_state = 60}, [869] = {.lex_state = 60}, [870] = {.lex_state = 60}, [871] = {.lex_state = 60}, - [872] = {.lex_state = 60}, - [873] = {.lex_state = 62}, - [874] = {.lex_state = 62}, + [872] = {.lex_state = 64}, + [873] = {.lex_state = 140}, + [874] = {.lex_state = 60}, [875] = {.lex_state = 62}, [876] = {.lex_state = 62}, - [877] = {.lex_state = 60}, + [877] = {.lex_state = 62}, [878] = {.lex_state = 62}, [879] = {.lex_state = 62}, - [880] = {.lex_state = 62}, + [880] = {.lex_state = 60}, [881] = {.lex_state = 62}, [882] = {.lex_state = 62}, [883] = {.lex_state = 62}, [884] = {.lex_state = 62}, [885] = {.lex_state = 62}, - [886] = {.lex_state = 64}, - [887] = {.lex_state = 66}, + [886] = {.lex_state = 62}, + [887] = {.lex_state = 62}, [888] = {.lex_state = 64}, [889] = {.lex_state = 64}, - [890] = {.lex_state = 64}, + [890] = {.lex_state = 66}, [891] = {.lex_state = 64}, [892] = {.lex_state = 64}, [893] = {.lex_state = 64}, [894] = {.lex_state = 64}, [895] = {.lex_state = 64}, [896] = {.lex_state = 64}, - [897] = {.lex_state = 66}, + [897] = {.lex_state = 64}, [898] = {.lex_state = 64}, - [899] = {.lex_state = 62}, - [900] = {.lex_state = 66}, - [901] = {.lex_state = 64}, - [902] = {.lex_state = 64}, - [903] = {.lex_state = 66}, + [899] = {.lex_state = 64}, + [900] = {.lex_state = 64}, + [901] = {.lex_state = 62}, + [902] = {.lex_state = 66}, + [903] = {.lex_state = 64}, [904] = {.lex_state = 66}, [905] = {.lex_state = 66}, [906] = {.lex_state = 66}, [907] = {.lex_state = 66}, [908] = {.lex_state = 66}, [909] = {.lex_state = 66}, - [910] = {.lex_state = 66}, + [910] = {.lex_state = 64}, [911] = {.lex_state = 66}, [912] = {.lex_state = 66}, [913] = {.lex_state = 66}, @@ -14074,164 +14110,164 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [916] = {.lex_state = 66}, [917] = {.lex_state = 66}, [918] = {.lex_state = 66}, - [919] = {.lex_state = 64}, + [919] = {.lex_state = 66}, [920] = {.lex_state = 66}, [921] = {.lex_state = 66}, [922] = {.lex_state = 66}, [923] = {.lex_state = 66}, - [924] = {.lex_state = 64}, + [924] = {.lex_state = 66}, [925] = {.lex_state = 66}, [926] = {.lex_state = 66}, - [927] = {.lex_state = 64}, - [928] = {.lex_state = 64}, - [929] = {.lex_state = 64}, + [927] = {.lex_state = 66}, + [928] = {.lex_state = 66}, + [929] = {.lex_state = 66}, [930] = {.lex_state = 64}, [931] = {.lex_state = 64}, [932] = {.lex_state = 66}, [933] = {.lex_state = 66}, - [934] = {.lex_state = 66}, + [934] = {.lex_state = 64}, [935] = {.lex_state = 64}, - [936] = {.lex_state = 66}, + [936] = {.lex_state = 64}, [937] = {.lex_state = 66}, [938] = {.lex_state = 66}, - [939] = {.lex_state = 66}, - [940] = {.lex_state = 64}, + [939] = {.lex_state = 64}, + [940] = {.lex_state = 66}, [941] = {.lex_state = 66}, - [942] = {.lex_state = 66}, + [942] = {.lex_state = 64}, [943] = {.lex_state = 66}, [944] = {.lex_state = 66}, [945] = {.lex_state = 66}, [946] = {.lex_state = 66}, [947] = {.lex_state = 66}, - [948] = {.lex_state = 64}, + [948] = {.lex_state = 66}, [949] = {.lex_state = 66}, - [950] = {.lex_state = 66}, - [951] = {.lex_state = 64}, + [950] = {.lex_state = 64}, + [951] = {.lex_state = 66}, [952] = {.lex_state = 66}, - [953] = {.lex_state = 64}, + [953] = {.lex_state = 66}, [954] = {.lex_state = 66}, [955] = {.lex_state = 64}, - [956] = {.lex_state = 64}, + [956] = {.lex_state = 66}, [957] = {.lex_state = 66}, - [958] = {.lex_state = 66}, + [958] = {.lex_state = 64}, [959] = {.lex_state = 64}, [960] = {.lex_state = 64}, - [961] = {.lex_state = 64}, - [962] = {.lex_state = 66}, + [961] = {.lex_state = 66}, + [962] = {.lex_state = 64}, [963] = {.lex_state = 66}, [964] = {.lex_state = 66}, [965] = {.lex_state = 66}, [966] = {.lex_state = 64}, - [967] = {.lex_state = 66}, + [967] = {.lex_state = 64}, [968] = {.lex_state = 64}, - [969] = {.lex_state = 60}, + [969] = {.lex_state = 64}, [970] = {.lex_state = 64}, - [971] = {.lex_state = 60}, - [972] = {.lex_state = 65}, - [973] = {.lex_state = 65}, + [971] = {.lex_state = 64}, + [972] = {.lex_state = 60}, + [973] = {.lex_state = 60}, [974] = {.lex_state = 65}, - [975] = {.lex_state = 65}, - [976] = {.lex_state = 65}, - [977] = {.lex_state = 64}, - [978] = {.lex_state = 64}, - [979] = {.lex_state = 60}, + [975] = {.lex_state = 64}, + [976] = {.lex_state = 64}, + [977] = {.lex_state = 65}, + [978] = {.lex_state = 65}, + [979] = {.lex_state = 65}, [980] = {.lex_state = 65}, - [981] = {.lex_state = 60}, + [981] = {.lex_state = 65}, [982] = {.lex_state = 65}, - [983] = {.lex_state = 64}, + [983] = {.lex_state = 60}, [984] = {.lex_state = 65}, - [985] = {.lex_state = 65}, - [986] = {.lex_state = 65}, - [987] = {.lex_state = 65}, - [988] = {.lex_state = 65}, - [989] = {.lex_state = 65}, - [990] = {.lex_state = 65}, + [985] = {.lex_state = 60}, + [986] = {.lex_state = 64}, + [987] = {.lex_state = 60}, + [988] = {.lex_state = 64}, + [989] = {.lex_state = 60}, + [990] = {.lex_state = 60}, [991] = {.lex_state = 60}, [992] = {.lex_state = 60}, [993] = {.lex_state = 60}, - [994] = {.lex_state = 64}, - [995] = {.lex_state = 65}, - [996] = {.lex_state = 60}, + [994] = {.lex_state = 60}, + [995] = {.lex_state = 60}, + [996] = {.lex_state = 64}, [997] = {.lex_state = 60}, - [998] = {.lex_state = 64}, - [999] = {.lex_state = 64}, - [1000] = {.lex_state = 65}, - [1001] = {.lex_state = 65}, - [1002] = {.lex_state = 64}, - [1003] = {.lex_state = 60}, - [1004] = {.lex_state = 60}, + [998] = {.lex_state = 65}, + [999] = {.lex_state = 60}, + [1000] = {.lex_state = 60}, + [1001] = {.lex_state = 60}, + [1002] = {.lex_state = 60}, + [1003] = {.lex_state = 65}, + [1004] = {.lex_state = 65}, [1005] = {.lex_state = 60}, - [1006] = {.lex_state = 60}, - [1007] = {.lex_state = 60}, + [1006] = {.lex_state = 65}, + [1007] = {.lex_state = 64}, [1008] = {.lex_state = 64}, - [1009] = {.lex_state = 60}, - [1010] = {.lex_state = 64}, - [1011] = {.lex_state = 60}, - [1012] = {.lex_state = 60}, + [1009] = {.lex_state = 65}, + [1010] = {.lex_state = 65}, + [1011] = {.lex_state = 65}, + [1012] = {.lex_state = 64}, [1013] = {.lex_state = 65}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 64}, - [1016] = {.lex_state = 64}, - [1017] = {.lex_state = 60}, + [1014] = {.lex_state = 64}, + [1015] = {.lex_state = 65}, + [1016] = {.lex_state = 65}, + [1017] = {.lex_state = 64}, [1018] = {.lex_state = 64}, [1019] = {.lex_state = 64}, - [1020] = {.lex_state = 64}, - [1021] = {.lex_state = 70}, - [1022] = {.lex_state = 70}, + [1020] = {.lex_state = 60}, + [1021] = {.lex_state = 64}, + [1022] = {.lex_state = 64}, [1023] = {.lex_state = 71}, - [1024] = {.lex_state = 71}, - [1025] = {.lex_state = 71}, - [1026] = {.lex_state = 60}, - [1027] = {.lex_state = 71}, - [1028] = {.lex_state = 71}, + [1024] = {.lex_state = 60}, + [1025] = {.lex_state = 70}, + [1026] = {.lex_state = 64}, + [1027] = {.lex_state = 70}, + [1028] = {.lex_state = 70}, [1029] = {.lex_state = 71}, [1030] = {.lex_state = 71}, [1031] = {.lex_state = 71}, - [1032] = {.lex_state = 70}, - [1033] = {.lex_state = 64}, - [1034] = {.lex_state = 64}, - [1035] = {.lex_state = 64}, - [1036] = {.lex_state = 71}, - [1037] = {.lex_state = 71}, + [1032] = {.lex_state = 71}, + [1033] = {.lex_state = 71}, + [1034] = {.lex_state = 71}, + [1035] = {.lex_state = 70}, + [1036] = {.lex_state = 70}, + [1037] = {.lex_state = 64}, [1038] = {.lex_state = 71}, - [1039] = {.lex_state = 70}, + [1039] = {.lex_state = 64}, [1040] = {.lex_state = 71}, - [1041] = {.lex_state = 70}, - [1042] = {.lex_state = 70}, - [1043] = {.lex_state = 60}, - [1044] = {.lex_state = 70}, - [1045] = {.lex_state = 70}, - [1046] = {.lex_state = 70}, - [1047] = {.lex_state = 70}, - [1048] = {.lex_state = 64}, - [1049] = {.lex_state = 70}, - [1050] = {.lex_state = 60}, - [1051] = {.lex_state = 70}, - [1052] = {.lex_state = 64}, - [1053] = {.lex_state = 60}, + [1041] = {.lex_state = 71}, + [1042] = {.lex_state = 71}, + [1043] = {.lex_state = 71}, + [1044] = {.lex_state = 71}, + [1045] = {.lex_state = 71}, + [1046] = {.lex_state = 60}, + [1047] = {.lex_state = 71}, + [1048] = {.lex_state = 71}, + [1049] = {.lex_state = 71}, + [1050] = {.lex_state = 70}, + [1051] = {.lex_state = 71}, + [1052] = {.lex_state = 70}, + [1053] = {.lex_state = 70}, [1054] = {.lex_state = 64}, - [1055] = {.lex_state = 71}, + [1055] = {.lex_state = 70}, [1056] = {.lex_state = 64}, - [1057] = {.lex_state = 71}, - [1058] = {.lex_state = 71}, - [1059] = {.lex_state = 71}, - [1060] = {.lex_state = 71}, - [1061] = {.lex_state = 71}, + [1057] = {.lex_state = 64}, + [1058] = {.lex_state = 70}, + [1059] = {.lex_state = 70}, + [1060] = {.lex_state = 70}, + [1061] = {.lex_state = 70}, [1062] = {.lex_state = 64}, - [1063] = {.lex_state = 64}, + [1063] = {.lex_state = 70}, [1064] = {.lex_state = 64}, - [1065] = {.lex_state = 64}, - [1066] = {.lex_state = 70}, + [1065] = {.lex_state = 60}, + [1066] = {.lex_state = 64}, [1067] = {.lex_state = 70}, - [1068] = {.lex_state = 70}, - [1069] = {.lex_state = 64}, - [1070] = {.lex_state = 70}, + [1068] = {.lex_state = 64}, + [1069] = {.lex_state = 60}, + [1070] = {.lex_state = 64}, [1071] = {.lex_state = 60}, - [1072] = {.lex_state = 64}, - [1073] = {.lex_state = 70}, + [1072] = {.lex_state = 70}, + [1073] = {.lex_state = 64}, [1074] = {.lex_state = 64}, [1075] = {.lex_state = 70}, - [1076] = {.lex_state = 64}, + [1076] = {.lex_state = 70}, [1077] = {.lex_state = 64}, [1078] = {.lex_state = 64}, [1079] = {.lex_state = 64}, @@ -14268,8 +14304,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1110] = {.lex_state = 64}, [1111] = {.lex_state = 64}, [1112] = {.lex_state = 64}, - [1113] = {.lex_state = 64}, - [1114] = {.lex_state = 140}, + [1113] = {.lex_state = 140}, + [1114] = {.lex_state = 64}, [1115] = {.lex_state = 64}, [1116] = {.lex_state = 64}, [1117] = {.lex_state = 64}, @@ -14283,8 +14319,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1125] = {.lex_state = 64}, [1126] = {.lex_state = 64}, [1127] = {.lex_state = 64}, - [1128] = {.lex_state = 62}, - [1129] = {.lex_state = 62}, + [1128] = {.lex_state = 64}, + [1129] = {.lex_state = 64}, [1130] = {.lex_state = 62}, [1131] = {.lex_state = 62}, [1132] = {.lex_state = 62}, @@ -14294,11 +14330,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1136] = {.lex_state = 62}, [1137] = {.lex_state = 62}, [1138] = {.lex_state = 62}, - [1139] = {.lex_state = 62}, + [1139] = {.lex_state = 64}, [1140] = {.lex_state = 62}, - [1141] = {.lex_state = 64}, - [1142] = {.lex_state = 64}, - [1143] = {.lex_state = 64}, + [1141] = {.lex_state = 62}, + [1142] = {.lex_state = 62}, + [1143] = {.lex_state = 62}, [1144] = {.lex_state = 64}, [1145] = {.lex_state = 64}, [1146] = {.lex_state = 64}, @@ -14318,149 +14354,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1160] = {.lex_state = 64}, [1161] = {.lex_state = 64}, [1162] = {.lex_state = 64}, - [1163] = {.lex_state = 66}, - [1164] = {.lex_state = 66}, - [1165] = {.lex_state = 66}, + [1163] = {.lex_state = 64}, + [1164] = {.lex_state = 64}, + [1165] = {.lex_state = 64}, [1166] = {.lex_state = 64}, - [1167] = {.lex_state = 64}, + [1167] = {.lex_state = 66}, [1168] = {.lex_state = 66}, - [1169] = {.lex_state = 64}, - [1170] = {.lex_state = 66}, + [1169] = {.lex_state = 66}, + [1170] = {.lex_state = 64}, [1171] = {.lex_state = 66}, [1172] = {.lex_state = 66}, [1173] = {.lex_state = 66}, - [1174] = {.lex_state = 66}, - [1175] = {.lex_state = 64}, + [1174] = {.lex_state = 64}, + [1175] = {.lex_state = 66}, [1176] = {.lex_state = 66}, [1177] = {.lex_state = 66}, [1178] = {.lex_state = 66}, [1179] = {.lex_state = 66}, [1180] = {.lex_state = 64}, - [1181] = {.lex_state = 64}, - [1182] = {.lex_state = 64}, + [1181] = {.lex_state = 66}, + [1182] = {.lex_state = 66}, [1183] = {.lex_state = 64}, [1184] = {.lex_state = 64}, [1185] = {.lex_state = 64}, [1186] = {.lex_state = 64}, [1187] = {.lex_state = 64}, [1188] = {.lex_state = 64}, - [1189] = {.lex_state = 60}, - [1190] = {.lex_state = 60}, + [1189] = {.lex_state = 64}, + [1190] = {.lex_state = 64}, [1191] = {.lex_state = 60}, [1192] = {.lex_state = 60}, - [1193] = {.lex_state = 64}, + [1193] = {.lex_state = 60}, [1194] = {.lex_state = 60}, [1195] = {.lex_state = 60}, [1196] = {.lex_state = 60}, [1197] = {.lex_state = 60}, [1198] = {.lex_state = 60}, - [1199] = {.lex_state = 60}, + [1199] = {.lex_state = 64}, [1200] = {.lex_state = 60}, [1201] = {.lex_state = 60}, [1202] = {.lex_state = 60}, - [1203] = {.lex_state = 60}, + [1203] = {.lex_state = 64}, [1204] = {.lex_state = 64}, - [1205] = {.lex_state = 60}, - [1206] = {.lex_state = 64}, - [1207] = {.lex_state = 64}, - [1208] = {.lex_state = 64}, + [1205] = {.lex_state = 64}, + [1206] = {.lex_state = 60}, + [1207] = {.lex_state = 60}, + [1208] = {.lex_state = 60}, [1209] = {.lex_state = 60}, - [1210] = {.lex_state = 64}, + [1210] = {.lex_state = 60}, [1211] = {.lex_state = 64}, [1212] = {.lex_state = 60}, - [1213] = {.lex_state = 60}, + [1213] = {.lex_state = 64}, [1214] = {.lex_state = 60}, [1215] = {.lex_state = 60}, - [1216] = {.lex_state = 60}, - [1217] = {.lex_state = 64}, - [1218] = {.lex_state = 64}, + [1216] = {.lex_state = 64}, + [1217] = {.lex_state = 60}, + [1218] = {.lex_state = 60}, [1219] = {.lex_state = 60}, - [1220] = {.lex_state = 64}, + [1220] = {.lex_state = 60}, [1221] = {.lex_state = 60}, [1222] = {.lex_state = 60}, - [1223] = {.lex_state = 60}, + [1223] = {.lex_state = 64}, [1224] = {.lex_state = 60}, - [1225] = {.lex_state = 64}, + [1225] = {.lex_state = 60}, [1226] = {.lex_state = 60}, - [1227] = {.lex_state = 60}, - [1228] = {.lex_state = 64}, + [1227] = {.lex_state = 64}, + [1228] = {.lex_state = 60}, [1229] = {.lex_state = 64}, [1230] = {.lex_state = 60}, - [1231] = {.lex_state = 60}, - [1232] = {.lex_state = 60}, + [1231] = {.lex_state = 64}, + [1232] = {.lex_state = 64}, [1233] = {.lex_state = 60}, - [1234] = {.lex_state = 60}, + [1234] = {.lex_state = 64}, [1235] = {.lex_state = 60}, [1236] = {.lex_state = 60}, - [1237] = {.lex_state = 60}, - [1238] = {.lex_state = 64}, + [1237] = {.lex_state = 64}, + [1238] = {.lex_state = 60}, [1239] = {.lex_state = 60}, [1240] = {.lex_state = 60}, - [1241] = {.lex_state = 64}, - [1242] = {.lex_state = 60}, + [1241] = {.lex_state = 60}, + [1242] = {.lex_state = 64}, [1243] = {.lex_state = 60}, [1244] = {.lex_state = 60}, [1245] = {.lex_state = 60}, [1246] = {.lex_state = 60}, - [1247] = {.lex_state = 60}, - [1248] = {.lex_state = 64}, + [1247] = {.lex_state = 64}, + [1248] = {.lex_state = 60}, [1249] = {.lex_state = 60}, [1250] = {.lex_state = 60}, [1251] = {.lex_state = 60}, - [1252] = {.lex_state = 60}, + [1252] = {.lex_state = 64}, [1253] = {.lex_state = 60}, [1254] = {.lex_state = 64}, [1255] = {.lex_state = 60}, - [1256] = {.lex_state = 64}, + [1256] = {.lex_state = 60}, [1257] = {.lex_state = 60}, - [1258] = {.lex_state = 64}, - [1259] = {.lex_state = 60}, + [1258] = {.lex_state = 60}, + [1259] = {.lex_state = 64}, [1260] = {.lex_state = 60}, [1261] = {.lex_state = 60}, [1262] = {.lex_state = 60}, - [1263] = {.lex_state = 60}, - [1264] = {.lex_state = 64}, + [1263] = {.lex_state = 64}, + [1264] = {.lex_state = 60}, [1265] = {.lex_state = 60}, [1266] = {.lex_state = 60}, [1267] = {.lex_state = 60}, [1268] = {.lex_state = 60}, - [1269] = {.lex_state = 64}, + [1269] = {.lex_state = 60}, [1270] = {.lex_state = 60}, [1271] = {.lex_state = 60}, [1272] = {.lex_state = 60}, [1273] = {.lex_state = 60}, [1274] = {.lex_state = 60}, - [1275] = {.lex_state = 64}, + [1275] = {.lex_state = 60}, [1276] = {.lex_state = 64}, [1277] = {.lex_state = 60}, [1278] = {.lex_state = 60}, [1279] = {.lex_state = 60}, - [1280] = {.lex_state = 60}, + [1280] = {.lex_state = 64}, [1281] = {.lex_state = 64}, - [1282] = {.lex_state = 64}, + [1282] = {.lex_state = 60}, [1283] = {.lex_state = 60}, [1284] = {.lex_state = 60}, [1285] = {.lex_state = 60}, [1286] = {.lex_state = 60}, - [1287] = {.lex_state = 60}, + [1287] = {.lex_state = 64}, [1288] = {.lex_state = 60}, - [1289] = {.lex_state = 64}, - [1290] = {.lex_state = 60}, + [1289] = {.lex_state = 60}, + [1290] = {.lex_state = 64}, [1291] = {.lex_state = 60}, [1292] = {.lex_state = 60}, [1293] = {.lex_state = 60}, [1294] = {.lex_state = 60}, [1295] = {.lex_state = 60}, - [1296] = {.lex_state = 60}, + [1296] = {.lex_state = 64}, [1297] = {.lex_state = 60}, [1298] = {.lex_state = 60}, - [1299] = {.lex_state = 64}, + [1299] = {.lex_state = 60}, [1300] = {.lex_state = 60}, [1301] = {.lex_state = 64}, - [1302] = {.lex_state = 64}, - [1303] = {.lex_state = 60}, + [1302] = {.lex_state = 60}, + [1303] = {.lex_state = 64}, [1304] = {.lex_state = 64}, - [1305] = {.lex_state = 64}, + [1305] = {.lex_state = 60}, [1306] = {.lex_state = 64}, [1307] = {.lex_state = 64}, [1308] = {.lex_state = 64}, @@ -14473,109 +14509,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1315] = {.lex_state = 64}, [1316] = {.lex_state = 64}, [1317] = {.lex_state = 64}, - [1318] = {.lex_state = 65}, + [1318] = {.lex_state = 64}, [1319] = {.lex_state = 64}, [1320] = {.lex_state = 64}, [1321] = {.lex_state = 64}, [1322] = {.lex_state = 64}, [1323] = {.lex_state = 64}, [1324] = {.lex_state = 65}, - [1325] = {.lex_state = 59}, + [1325] = {.lex_state = 64}, [1326] = {.lex_state = 59}, - [1327] = {.lex_state = 33}, + [1327] = {.lex_state = 65}, [1328] = {.lex_state = 65}, - [1329] = {.lex_state = 65}, - [1330] = {.lex_state = 59}, - [1331] = {.lex_state = 59}, + [1329] = {.lex_state = 59}, + [1330] = {.lex_state = 65}, + [1331] = {.lex_state = 33}, [1332] = {.lex_state = 59}, [1333] = {.lex_state = 59}, [1334] = {.lex_state = 65}, [1335] = {.lex_state = 65}, - [1336] = {.lex_state = 65}, - [1337] = {.lex_state = 65}, - [1338] = {.lex_state = 65}, - [1339] = {.lex_state = 64}, - [1340] = {.lex_state = 65}, - [1341] = {.lex_state = 65}, - [1342] = {.lex_state = 65}, - [1343] = {.lex_state = 65}, - [1344] = {.lex_state = 64}, + [1336] = {.lex_state = 59}, + [1337] = {.lex_state = 59}, + [1338] = {.lex_state = 59}, + [1339] = {.lex_state = 59}, + [1340] = {.lex_state = 59}, + [1341] = {.lex_state = 59}, + [1342] = {.lex_state = 59}, + [1343] = {.lex_state = 59}, + [1344] = {.lex_state = 59}, [1345] = {.lex_state = 65}, [1346] = {.lex_state = 59}, [1347] = {.lex_state = 59}, [1348] = {.lex_state = 59}, - [1349] = {.lex_state = 59}, + [1349] = {.lex_state = 64}, [1350] = {.lex_state = 59}, [1351] = {.lex_state = 59}, [1352] = {.lex_state = 59}, [1353] = {.lex_state = 59}, - [1354] = {.lex_state = 59}, - [1355] = {.lex_state = 65}, - [1356] = {.lex_state = 65}, - [1357] = {.lex_state = 65}, + [1354] = {.lex_state = 65}, + [1355] = {.lex_state = 59}, + [1356] = {.lex_state = 59}, + [1357] = {.lex_state = 59}, [1358] = {.lex_state = 59}, - [1359] = {.lex_state = 65}, + [1359] = {.lex_state = 59}, [1360] = {.lex_state = 59}, - [1361] = {.lex_state = 65}, - [1362] = {.lex_state = 65}, + [1361] = {.lex_state = 59}, + [1362] = {.lex_state = 59}, [1363] = {.lex_state = 59}, - [1364] = {.lex_state = 59}, - [1365] = {.lex_state = 59}, + [1364] = {.lex_state = 65}, + [1365] = {.lex_state = 65}, [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 59}, - [1368] = {.lex_state = 59}, - [1369] = {.lex_state = 59}, - [1370] = {.lex_state = 59}, - [1371] = {.lex_state = 59}, - [1372] = {.lex_state = 59}, + [1367] = {.lex_state = 65}, + [1368] = {.lex_state = 65}, + [1369] = {.lex_state = 65}, + [1370] = {.lex_state = 64}, + [1371] = {.lex_state = 65}, + [1372] = {.lex_state = 65}, [1373] = {.lex_state = 59}, - [1374] = {.lex_state = 59}, - [1375] = {.lex_state = 59}, - [1376] = {.lex_state = 59}, - [1377] = {.lex_state = 59}, - [1378] = {.lex_state = 64}, + [1374] = {.lex_state = 65}, + [1375] = {.lex_state = 65}, + [1376] = {.lex_state = 65}, + [1377] = {.lex_state = 65}, + [1378] = {.lex_state = 65}, [1379] = {.lex_state = 59}, [1380] = {.lex_state = 59}, [1381] = {.lex_state = 59}, - [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 64}, + [1382] = {.lex_state = 65}, + [1383] = {.lex_state = 65}, [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 59}, + [1385] = {.lex_state = 64}, [1386] = {.lex_state = 59}, - [1387] = {.lex_state = 59}, + [1387] = {.lex_state = 64}, [1388] = {.lex_state = 59}, [1389] = {.lex_state = 59}, [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 65}, + [1391] = {.lex_state = 59}, [1392] = {.lex_state = 65}, - [1393] = {.lex_state = 64}, + [1393] = {.lex_state = 59}, [1394] = {.lex_state = 59}, - [1395] = {.lex_state = 65}, + [1395] = {.lex_state = 64}, [1396] = {.lex_state = 65}, - [1397] = {.lex_state = 64}, - [1398] = {.lex_state = 33}, - [1399] = {.lex_state = 64}, - [1400] = {.lex_state = 64}, + [1397] = {.lex_state = 59}, + [1398] = {.lex_state = 59}, + [1399] = {.lex_state = 33}, + [1400] = {.lex_state = 33}, [1401] = {.lex_state = 33}, [1402] = {.lex_state = 64}, [1403] = {.lex_state = 33}, - [1404] = {.lex_state = 33}, + [1404] = {.lex_state = 64}, [1405] = {.lex_state = 33}, [1406] = {.lex_state = 33}, [1407] = {.lex_state = 33}, [1408] = {.lex_state = 33}, [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 33}, + [1410] = {.lex_state = 65}, [1411] = {.lex_state = 33}, [1412] = {.lex_state = 33}, [1413] = {.lex_state = 33}, [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 65}, + [1415] = {.lex_state = 33}, [1416] = {.lex_state = 33}, [1417] = {.lex_state = 33}, [1418] = {.lex_state = 33}, - [1419] = {.lex_state = 33}, - [1420] = {.lex_state = 64}, + [1419] = {.lex_state = 64}, + [1420] = {.lex_state = 33}, [1421] = {.lex_state = 33}, [1422] = {.lex_state = 33}, [1423] = {.lex_state = 33}, @@ -14583,24 +14619,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1425] = {.lex_state = 33}, [1426] = {.lex_state = 33}, [1427] = {.lex_state = 33}, - [1428] = {.lex_state = 64}, - [1429] = {.lex_state = 33}, - [1430] = {.lex_state = 65}, - [1431] = {.lex_state = 64}, + [1428] = {.lex_state = 33}, + [1429] = {.lex_state = 64}, + [1430] = {.lex_state = 33}, + [1431] = {.lex_state = 65}, [1432] = {.lex_state = 33}, - [1433] = {.lex_state = 33}, + [1433] = {.lex_state = 64}, [1434] = {.lex_state = 64}, [1435] = {.lex_state = 33}, [1436] = {.lex_state = 33}, - [1437] = {.lex_state = 33}, + [1437] = {.lex_state = 64}, [1438] = {.lex_state = 33}, [1439] = {.lex_state = 33}, [1440] = {.lex_state = 64}, [1441] = {.lex_state = 64}, - [1442] = {.lex_state = 33}, + [1442] = {.lex_state = 64}, [1443] = {.lex_state = 33}, - [1444] = {.lex_state = 64}, - [1445] = {.lex_state = 64}, + [1444] = {.lex_state = 33}, + [1445] = {.lex_state = 33}, [1446] = {.lex_state = 64}, [1447] = {.lex_state = 64}, [1448] = {.lex_state = 64}, @@ -14628,11 +14664,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1470] = {.lex_state = 64}, [1471] = {.lex_state = 64}, [1472] = {.lex_state = 64}, - [1473] = {.lex_state = 64}, + [1473] = {.lex_state = 62}, [1474] = {.lex_state = 64}, [1475] = {.lex_state = 64}, [1476] = {.lex_state = 64}, - [1477] = {.lex_state = 62}, + [1477] = {.lex_state = 64}, [1478] = {.lex_state = 64}, [1479] = {.lex_state = 64}, [1480] = {.lex_state = 64}, @@ -14649,14 +14685,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1491] = {.lex_state = 64}, [1492] = {.lex_state = 64}, [1493] = {.lex_state = 64}, - [1494] = {.lex_state = 69}, - [1495] = {.lex_state = 64}, + [1494] = {.lex_state = 64}, + [1495] = {.lex_state = 69}, [1496] = {.lex_state = 64}, [1497] = {.lex_state = 64}, [1498] = {.lex_state = 64}, [1499] = {.lex_state = 64}, - [1500] = {.lex_state = 64}, - [1501] = {.lex_state = 69}, + [1500] = {.lex_state = 69}, + [1501] = {.lex_state = 64}, [1502] = {.lex_state = 64}, [1503] = {.lex_state = 64}, [1504] = {.lex_state = 64}, @@ -14669,272 +14705,272 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1511] = {.lex_state = 64}, [1512] = {.lex_state = 64}, [1513] = {.lex_state = 64}, - [1514] = {.lex_state = 62}, + [1514] = {.lex_state = 64}, [1515] = {.lex_state = 64}, - [1516] = {.lex_state = 64}, + [1516] = {.lex_state = 62}, [1517] = {.lex_state = 64}, - [1518] = {.lex_state = 64}, + [1518] = {.lex_state = 66}, [1519] = {.lex_state = 64}, - [1520] = {.lex_state = 64}, + [1520] = {.lex_state = 66}, [1521] = {.lex_state = 64}, [1522] = {.lex_state = 64}, [1523] = {.lex_state = 64}, - [1524] = {.lex_state = 69}, - [1525] = {.lex_state = 64}, + [1524] = {.lex_state = 64}, + [1525] = {.lex_state = 66}, [1526] = {.lex_state = 64}, - [1527] = {.lex_state = 62}, + [1527] = {.lex_state = 64}, [1528] = {.lex_state = 62}, [1529] = {.lex_state = 64}, - [1530] = {.lex_state = 66}, + [1530] = {.lex_state = 64}, [1531] = {.lex_state = 64}, - [1532] = {.lex_state = 66}, + [1532] = {.lex_state = 64}, [1533] = {.lex_state = 64}, - [1534] = {.lex_state = 64}, - [1535] = {.lex_state = 64}, - [1536] = {.lex_state = 64}, + [1534] = {.lex_state = 62}, + [1535] = {.lex_state = 69}, + [1536] = {.lex_state = 0}, [1537] = {.lex_state = 64}, [1538] = {.lex_state = 64}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 64}, + [1539] = {.lex_state = 64}, + [1540] = {.lex_state = 0}, [1541] = {.lex_state = 64}, [1542] = {.lex_state = 64}, - [1543] = {.lex_state = 0}, + [1543] = {.lex_state = 64}, [1544] = {.lex_state = 64}, [1545] = {.lex_state = 64}, [1546] = {.lex_state = 64}, - [1547] = {.lex_state = 140}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, + [1547] = {.lex_state = 64}, + [1548] = {.lex_state = 64}, + [1549] = {.lex_state = 64}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 140}, + [1551] = {.lex_state = 0}, [1552] = {.lex_state = 140}, [1553] = {.lex_state = 68}, [1554] = {.lex_state = 140}, - [1555] = {.lex_state = 68}, - [1556] = {.lex_state = 68}, + [1555] = {.lex_state = 140}, + [1556] = {.lex_state = 64}, [1557] = {.lex_state = 64}, - [1558] = {.lex_state = 68}, - [1559] = {.lex_state = 140}, + [1558] = {.lex_state = 140}, + [1559] = {.lex_state = 0}, [1560] = {.lex_state = 68}, - [1561] = {.lex_state = 64}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 66}, - [1564] = {.lex_state = 66}, - [1565] = {.lex_state = 64}, - [1566] = {.lex_state = 60}, - [1567] = {.lex_state = 140}, - [1568] = {.lex_state = 140}, - [1569] = {.lex_state = 0}, + [1561] = {.lex_state = 140}, + [1562] = {.lex_state = 68}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 68}, + [1565] = {.lex_state = 68}, + [1566] = {.lex_state = 64}, + [1567] = {.lex_state = 66}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 66}, [1570] = {.lex_state = 64}, - [1571] = {.lex_state = 64}, - [1572] = {.lex_state = 66}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 60}, - [1575] = {.lex_state = 64}, - [1576] = {.lex_state = 60}, - [1577] = {.lex_state = 140}, - [1578] = {.lex_state = 64}, + [1571] = {.lex_state = 140}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 64}, + [1574] = {.lex_state = 66}, + [1575] = {.lex_state = 62}, + [1576] = {.lex_state = 66}, + [1577] = {.lex_state = 64}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 140}, - [1580] = {.lex_state = 64}, - [1581] = {.lex_state = 140}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 140}, - [1584] = {.lex_state = 62}, - [1585] = {.lex_state = 66}, - [1586] = {.lex_state = 62}, - [1587] = {.lex_state = 64}, + [1580] = {.lex_state = 66}, + [1581] = {.lex_state = 66}, + [1582] = {.lex_state = 140}, + [1583] = {.lex_state = 66}, + [1584] = {.lex_state = 66}, + [1585] = {.lex_state = 60}, + [1586] = {.lex_state = 60}, + [1587] = {.lex_state = 62}, [1588] = {.lex_state = 64}, - [1589] = {.lex_state = 60}, - [1590] = {.lex_state = 66}, - [1591] = {.lex_state = 66}, - [1592] = {.lex_state = 66}, + [1589] = {.lex_state = 66}, + [1590] = {.lex_state = 64}, + [1591] = {.lex_state = 140}, + [1592] = {.lex_state = 140}, [1593] = {.lex_state = 62}, - [1594] = {.lex_state = 62}, - [1595] = {.lex_state = 64}, - [1596] = {.lex_state = 64}, - [1597] = {.lex_state = 64}, - [1598] = {.lex_state = 0}, + [1594] = {.lex_state = 64}, + [1595] = {.lex_state = 66}, + [1596] = {.lex_state = 60}, + [1597] = {.lex_state = 140}, + [1598] = {.lex_state = 66}, [1599] = {.lex_state = 64}, - [1600] = {.lex_state = 64}, - [1601] = {.lex_state = 0}, + [1600] = {.lex_state = 60}, + [1601] = {.lex_state = 64}, [1602] = {.lex_state = 64}, - [1603] = {.lex_state = 64}, + [1603] = {.lex_state = 0}, [1604] = {.lex_state = 64}, - [1605] = {.lex_state = 64}, - [1606] = {.lex_state = 140}, - [1607] = {.lex_state = 140}, - [1608] = {.lex_state = 64}, - [1609] = {.lex_state = 140}, - [1610] = {.lex_state = 140}, - [1611] = {.lex_state = 69}, - [1612] = {.lex_state = 140}, - [1613] = {.lex_state = 69}, - [1614] = {.lex_state = 69}, - [1615] = {.lex_state = 69}, - [1616] = {.lex_state = 69}, - [1617] = {.lex_state = 69}, - [1618] = {.lex_state = 64}, + [1605] = {.lex_state = 140}, + [1606] = {.lex_state = 64}, + [1607] = {.lex_state = 64}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 62}, + [1610] = {.lex_state = 64}, + [1611] = {.lex_state = 140}, + [1612] = {.lex_state = 64}, + [1613] = {.lex_state = 64}, + [1614] = {.lex_state = 140}, + [1615] = {.lex_state = 64}, + [1616] = {.lex_state = 64}, + [1617] = {.lex_state = 64}, + [1618] = {.lex_state = 69}, [1619] = {.lex_state = 140}, - [1620] = {.lex_state = 140}, - [1621] = {.lex_state = 64}, - [1622] = {.lex_state = 140}, + [1620] = {.lex_state = 69}, + [1621] = {.lex_state = 140}, + [1622] = {.lex_state = 62}, [1623] = {.lex_state = 69}, - [1624] = {.lex_state = 69}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 64}, - [1627] = {.lex_state = 69}, - [1628] = {.lex_state = 0}, + [1624] = {.lex_state = 64}, + [1625] = {.lex_state = 69}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 140}, + [1628] = {.lex_state = 69}, [1629] = {.lex_state = 69}, - [1630] = {.lex_state = 140}, - [1631] = {.lex_state = 69}, - [1632] = {.lex_state = 66}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 64}, - [1635] = {.lex_state = 64}, - [1636] = {.lex_state = 66}, - [1637] = {.lex_state = 0}, + [1630] = {.lex_state = 69}, + [1631] = {.lex_state = 66}, + [1632] = {.lex_state = 64}, + [1633] = {.lex_state = 140}, + [1634] = {.lex_state = 140}, + [1635] = {.lex_state = 69}, + [1636] = {.lex_state = 64}, + [1637] = {.lex_state = 66}, [1638] = {.lex_state = 66}, - [1639] = {.lex_state = 69}, - [1640] = {.lex_state = 62}, - [1641] = {.lex_state = 140}, - [1642] = {.lex_state = 66}, - [1643] = {.lex_state = 140}, - [1644] = {.lex_state = 140}, - [1645] = {.lex_state = 140}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 69}, + [1641] = {.lex_state = 69}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 64}, + [1645] = {.lex_state = 69}, [1646] = {.lex_state = 140}, [1647] = {.lex_state = 140}, - [1648] = {.lex_state = 64}, - [1649] = {.lex_state = 55}, + [1648] = {.lex_state = 55}, + [1649] = {.lex_state = 140}, [1650] = {.lex_state = 140}, [1651] = {.lex_state = 140}, [1652] = {.lex_state = 140}, - [1653] = {.lex_state = 62}, - [1654] = {.lex_state = 64}, + [1653] = {.lex_state = 140}, + [1654] = {.lex_state = 62}, [1655] = {.lex_state = 140}, - [1656] = {.lex_state = 140}, + [1656] = {.lex_state = 64}, [1657] = {.lex_state = 140}, [1658] = {.lex_state = 140}, - [1659] = {.lex_state = 66}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 38}, - [1665] = {.lex_state = 38}, + [1659] = {.lex_state = 140}, + [1660] = {.lex_state = 140}, + [1661] = {.lex_state = 64}, + [1662] = {.lex_state = 140}, + [1663] = {.lex_state = 66}, + [1664] = {.lex_state = 140}, + [1665] = {.lex_state = 64}, [1666] = {.lex_state = 38}, - [1667] = {.lex_state = 43}, + [1667] = {.lex_state = 0}, [1668] = {.lex_state = 64}, - [1669] = {.lex_state = 38}, + [1669] = {.lex_state = 62}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 64}, - [1672] = {.lex_state = 38}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 64}, - [1675] = {.lex_state = 64}, - [1676] = {.lex_state = 64}, - [1677] = {.lex_state = 43}, - [1678] = {.lex_state = 64}, + [1672] = {.lex_state = 64}, + [1673] = {.lex_state = 64}, + [1674] = {.lex_state = 55}, + [1675] = {.lex_state = 62}, + [1676] = {.lex_state = 43}, + [1677] = {.lex_state = 64}, + [1678] = {.lex_state = 45}, [1679] = {.lex_state = 64}, - [1680] = {.lex_state = 38}, - [1681] = {.lex_state = 62}, - [1682] = {.lex_state = 62}, - [1683] = {.lex_state = 62}, - [1684] = {.lex_state = 62}, + [1680] = {.lex_state = 64}, + [1681] = {.lex_state = 38}, + [1682] = {.lex_state = 43}, + [1683] = {.lex_state = 43}, + [1684] = {.lex_state = 64}, [1685] = {.lex_state = 64}, - [1686] = {.lex_state = 64}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 38}, + [1686] = {.lex_state = 45}, + [1687] = {.lex_state = 38}, + [1688] = {.lex_state = 64}, + [1689] = {.lex_state = 64}, [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 45}, - [1693] = {.lex_state = 43}, - [1694] = {.lex_state = 64}, - [1695] = {.lex_state = 64}, - [1696] = {.lex_state = 64}, - [1697] = {.lex_state = 45}, + [1691] = {.lex_state = 64}, + [1692] = {.lex_state = 64}, + [1693] = {.lex_state = 64}, + [1694] = {.lex_state = 38}, + [1695] = {.lex_state = 62}, + [1696] = {.lex_state = 43}, + [1697] = {.lex_state = 43}, [1698] = {.lex_state = 43}, - [1699] = {.lex_state = 64}, - [1700] = {.lex_state = 64}, - [1701] = {.lex_state = 64}, + [1699] = {.lex_state = 45}, + [1700] = {.lex_state = 43}, + [1701] = {.lex_state = 62}, [1702] = {.lex_state = 64}, [1703] = {.lex_state = 64}, - [1704] = {.lex_state = 64}, - [1705] = {.lex_state = 43}, - [1706] = {.lex_state = 64}, - [1707] = {.lex_state = 64}, - [1708] = {.lex_state = 64}, - [1709] = {.lex_state = 38}, - [1710] = {.lex_state = 64}, - [1711] = {.lex_state = 45}, - [1712] = {.lex_state = 43}, + [1704] = {.lex_state = 140}, + [1705] = {.lex_state = 64}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 45}, + [1708] = {.lex_state = 43}, + [1709] = {.lex_state = 64}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 66}, + [1712] = {.lex_state = 0}, [1713] = {.lex_state = 64}, - [1714] = {.lex_state = 45}, + [1714] = {.lex_state = 38}, [1715] = {.lex_state = 64}, [1716] = {.lex_state = 64}, - [1717] = {.lex_state = 43}, - [1718] = {.lex_state = 64}, + [1717] = {.lex_state = 64}, + [1718] = {.lex_state = 0}, [1719] = {.lex_state = 64}, - [1720] = {.lex_state = 45}, - [1721] = {.lex_state = 55}, - [1722] = {.lex_state = 38}, - [1723] = {.lex_state = 64}, + [1720] = {.lex_state = 64}, + [1721] = {.lex_state = 64}, + [1722] = {.lex_state = 64}, + [1723] = {.lex_state = 38}, [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 64}, + [1725] = {.lex_state = 38}, [1726] = {.lex_state = 64}, [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 64}, - [1729] = {.lex_state = 43}, - [1730] = {.lex_state = 43}, - [1731] = {.lex_state = 140}, - [1732] = {.lex_state = 40}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 45}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, + [1728] = {.lex_state = 38}, + [1729] = {.lex_state = 38}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 64}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 64}, + [1734] = {.lex_state = 64}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 43}, + [1737] = {.lex_state = 45}, [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 55}, - [1740] = {.lex_state = 64}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 64}, - [1743] = {.lex_state = 64}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 45}, + [1741] = {.lex_state = 55}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 64}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 64}, + [1745] = {.lex_state = 55}, + [1746] = {.lex_state = 64}, + [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, + [1749] = {.lex_state = 40}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, + [1753] = {.lex_state = 55}, + [1754] = {.lex_state = 64}, [1755] = {.lex_state = 0}, [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, + [1758] = {.lex_state = 64}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 40}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 55}, + [1761] = {.lex_state = 45}, + [1762] = {.lex_state = 64}, + [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 55}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 45}, - [1768] = {.lex_state = 40}, - [1769] = {.lex_state = 40}, - [1770] = {.lex_state = 55}, - [1771] = {.lex_state = 0}, + [1766] = {.lex_state = 64}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 40}, [1772] = {.lex_state = 64}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, + [1776] = {.lex_state = 64}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 55}, + [1778] = {.lex_state = 40}, + [1779] = {.lex_state = 64}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, @@ -14946,429 +14982,444 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 55}, + [1791] = {.lex_state = 40}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 64}, + [1793] = {.lex_state = 55}, + [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, + [1800] = {.lex_state = 64}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 64}, + [1802] = {.lex_state = 0}, [1803] = {.lex_state = 0}, [1804] = {.lex_state = 64}, - [1805] = {.lex_state = 40}, - [1806] = {.lex_state = 64}, - [1807] = {.lex_state = 45}, - [1808] = {.lex_state = 0}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 45}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 40}, [1809] = {.lex_state = 64}, [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 45}, - [1815] = {.lex_state = 64}, - [1816] = {.lex_state = 64}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, + [1820] = {.lex_state = 45}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 140}, - [1825] = {.lex_state = 140}, - [1826] = {.lex_state = 140}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 55}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 55}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 140}, - [1831] = {.lex_state = 140}, + [1828] = {.lex_state = 64}, + [1829] = {.lex_state = 64}, + [1830] = {.lex_state = 64}, + [1831] = {.lex_state = 55}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 39}, - [1834] = {.lex_state = 140}, - [1835] = {.lex_state = 140}, + [1833] = {.lex_state = 140}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 64}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, + [1839] = {.lex_state = 140}, [1840] = {.lex_state = 140}, [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 55}, - [1843] = {.lex_state = 140}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 140}, - [1845] = {.lex_state = 39}, + [1845] = {.lex_state = 140}, [1846] = {.lex_state = 140}, [1847] = {.lex_state = 140}, - [1848] = {.lex_state = 140}, - [1849] = {.lex_state = 64}, - [1850] = {.lex_state = 140}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, + [1848] = {.lex_state = 39}, + [1849] = {.lex_state = 140}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 140}, + [1852] = {.lex_state = 55}, [1853] = {.lex_state = 140}, - [1854] = {.lex_state = 39}, - [1855] = {.lex_state = 140}, + [1854] = {.lex_state = 0}, + [1855] = {.lex_state = 39}, [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 39}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 39}, + [1857] = {.lex_state = 140}, + [1858] = {.lex_state = 39}, + [1859] = {.lex_state = 140}, + [1860] = {.lex_state = 140}, [1861] = {.lex_state = 39}, - [1862] = {.lex_state = 39}, - [1863] = {.lex_state = 64}, - [1864] = {.lex_state = 64}, - [1865] = {.lex_state = 140}, + [1862] = {.lex_state = 140}, + [1863] = {.lex_state = 140}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 64}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 140}, - [1868] = {.lex_state = 140}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 39}, + [1869] = {.lex_state = 64}, + [1870] = {.lex_state = 140}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, + [1873] = {.lex_state = 140}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 140}, - [1877] = {.lex_state = 64}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 39}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 140}, + [1882] = {.lex_state = 0}, [1883] = {.lex_state = 140}, - [1884] = {.lex_state = 140}, - [1885] = {.lex_state = 39}, - [1886] = {.lex_state = 55}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 39}, - [1889] = {.lex_state = 39}, - [1890] = {.lex_state = 39}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 64}, + [1887] = {.lex_state = 64}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 140}, + [1890] = {.lex_state = 0}, [1891] = {.lex_state = 140}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 64}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 39}, - [1896] = {.lex_state = 39}, - [1897] = {.lex_state = 0}, + [1892] = {.lex_state = 39}, + [1893] = {.lex_state = 55}, + [1894] = {.lex_state = 140}, + [1895] = {.lex_state = 0}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 39}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 39}, - [1902] = {.lex_state = 140}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 0}, + [1899] = {.lex_state = 39}, + [1900] = {.lex_state = 140}, + [1901] = {.lex_state = 140}, + [1902] = {.lex_state = 0}, + [1903] = {.lex_state = 39}, + [1904] = {.lex_state = 140}, [1905] = {.lex_state = 140}, - [1906] = {.lex_state = 39}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 64}, + [1908] = {.lex_state = 39}, [1909] = {.lex_state = 39}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 39}, - [1913] = {.lex_state = 39}, + [1910] = {.lex_state = 140}, + [1911] = {.lex_state = 39}, + [1912] = {.lex_state = 0}, + [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 39}, - [1916] = {.lex_state = 64}, - [1917] = {.lex_state = 140}, - [1918] = {.lex_state = 64}, - [1919] = {.lex_state = 39}, - [1920] = {.lex_state = 39}, - [1921] = {.lex_state = 140}, - [1922] = {.lex_state = 64}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 39}, + [1917] = {.lex_state = 39}, + [1918] = {.lex_state = 140}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 64}, + [1921] = {.lex_state = 39}, + [1922] = {.lex_state = 140}, [1923] = {.lex_state = 140}, - [1924] = {.lex_state = 140}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 64}, - [1927] = {.lex_state = 64}, - [1928] = {.lex_state = 40}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 64}, + [1924] = {.lex_state = 39}, + [1925] = {.lex_state = 39}, + [1926] = {.lex_state = 140}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 39}, + [1929] = {.lex_state = 39}, + [1930] = {.lex_state = 39}, + [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 40}, - [1934] = {.lex_state = 40}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 40}, - [1936] = {.lex_state = 40}, - [1937] = {.lex_state = 53}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 40}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 53}, + [1939] = {.lex_state = 40}, [1940] = {.lex_state = 0}, [1941] = {.lex_state = 40}, - [1942] = {.lex_state = 53}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 40}, - [1945] = {.lex_state = 0}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 40}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 40}, [1946] = {.lex_state = 40}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 40}, - [1949] = {.lex_state = 53}, + [1947] = {.lex_state = 40}, + [1948] = {.lex_state = 53}, + [1949] = {.lex_state = 40}, [1950] = {.lex_state = 40}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 40}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 40}, - [1955] = {.lex_state = 140}, - [1956] = {.lex_state = 53}, - [1957] = {.lex_state = 0}, + [1951] = {.lex_state = 40}, + [1952] = {.lex_state = 64}, + [1953] = {.lex_state = 64}, + [1954] = {.lex_state = 64}, + [1955] = {.lex_state = 53}, + [1956] = {.lex_state = 64}, + [1957] = {.lex_state = 40}, [1958] = {.lex_state = 64}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 64}, + [1962] = {.lex_state = 53}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 53}, - [1966] = {.lex_state = 64}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 40}, + [1968] = {.lex_state = 40}, [1969] = {.lex_state = 0}, [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 53}, - [1972] = {.lex_state = 53}, - [1973] = {.lex_state = 53}, - [1974] = {.lex_state = 53}, - [1975] = {.lex_state = 53}, - [1976] = {.lex_state = 64}, - [1977] = {.lex_state = 53}, - [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 53}, - [1981] = {.lex_state = 53}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 53}, - [1984] = {.lex_state = 40}, - [1985] = {.lex_state = 53}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 64}, + [1973] = {.lex_state = 0}, + [1974] = {.lex_state = 0}, + [1975] = {.lex_state = 40}, + [1976] = {.lex_state = 53}, + [1977] = {.lex_state = 64}, + [1978] = {.lex_state = 40}, + [1979] = {.lex_state = 53}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 64}, + [1982] = {.lex_state = 40}, + [1983] = {.lex_state = 0}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, [1986] = {.lex_state = 53}, - [1987] = {.lex_state = 140}, - [1988] = {.lex_state = 0}, + [1987] = {.lex_state = 40}, + [1988] = {.lex_state = 53}, [1989] = {.lex_state = 53}, - [1990] = {.lex_state = 40}, - [1991] = {.lex_state = 53}, - [1992] = {.lex_state = 53}, + [1990] = {.lex_state = 53}, + [1991] = {.lex_state = 64}, + [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 40}, - [1998] = {.lex_state = 53}, - [1999] = {.lex_state = 64}, - [2000] = {.lex_state = 64}, - [2001] = {.lex_state = 53}, - [2002] = {.lex_state = 53}, - [2003] = {.lex_state = 0}, + [1995] = {.lex_state = 64}, + [1996] = {.lex_state = 40}, + [1997] = {.lex_state = 0}, + [1998] = {.lex_state = 0}, + [1999] = {.lex_state = 0}, + [2000] = {.lex_state = 0}, + [2001] = {.lex_state = 0}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 64}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 0}, [2006] = {.lex_state = 0}, [2007] = {.lex_state = 40}, - [2008] = {.lex_state = 64}, - [2009] = {.lex_state = 64}, + [2008] = {.lex_state = 0}, + [2009] = {.lex_state = 53}, [2010] = {.lex_state = 40}, - [2011] = {.lex_state = 140}, - [2012] = {.lex_state = 0}, + [2011] = {.lex_state = 0}, + [2012] = {.lex_state = 40}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 140}, - [2016] = {.lex_state = 64}, - [2017] = {.lex_state = 64}, + [2014] = {.lex_state = 64}, + [2015] = {.lex_state = 64}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 53}, [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 64}, - [2020] = {.lex_state = 53}, - [2021] = {.lex_state = 0}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 53}, [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 53}, - [2024] = {.lex_state = 64}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 64}, - [2028] = {.lex_state = 64}, + [2023] = {.lex_state = 64}, + [2024] = {.lex_state = 40}, + [2025] = {.lex_state = 53}, + [2026] = {.lex_state = 53}, + [2027] = {.lex_state = 0}, + [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 53}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 53}, - [2033] = {.lex_state = 53}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 64}, - [2036] = {.lex_state = 40}, - [2037] = {.lex_state = 53}, + [2030] = {.lex_state = 64}, + [2031] = {.lex_state = 40}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 64}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 64}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 64}, + [2039] = {.lex_state = 53}, [2040] = {.lex_state = 53}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 53}, - [2043] = {.lex_state = 53}, - [2044] = {.lex_state = 40}, + [2041] = {.lex_state = 64}, + [2042] = {.lex_state = 64}, + [2043] = {.lex_state = 64}, + [2044] = {.lex_state = 0}, [2045] = {.lex_state = 64}, [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, + [2047] = {.lex_state = 53}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 53}, - [2050] = {.lex_state = 53}, - [2051] = {.lex_state = 40}, + [2050] = {.lex_state = 64}, + [2051] = {.lex_state = 64}, [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 64}, - [2054] = {.lex_state = 64}, - [2055] = {.lex_state = 64}, + [2053] = {.lex_state = 53}, + [2054] = {.lex_state = 53}, + [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 64}, - [2060] = {.lex_state = 53}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 64}, [2061] = {.lex_state = 53}, [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 40}, - [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 40}, - [2066] = {.lex_state = 40}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 40}, - [2069] = {.lex_state = 0}, + [2063] = {.lex_state = 0}, + [2064] = {.lex_state = 53}, + [2065] = {.lex_state = 64}, + [2066] = {.lex_state = 140}, + [2067] = {.lex_state = 53}, + [2068] = {.lex_state = 64}, + [2069] = {.lex_state = 64}, [2070] = {.lex_state = 64}, - [2071] = {.lex_state = 64}, + [2071] = {.lex_state = 53}, [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 0}, + [2073] = {.lex_state = 64}, [2074] = {.lex_state = 64}, - [2075] = {.lex_state = 64}, - [2076] = {.lex_state = 64}, - [2077] = {.lex_state = 0}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 0}, + [2077] = {.lex_state = 53}, [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 140}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 140}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, + [2079] = {.lex_state = 53}, + [2080] = {.lex_state = 40}, + [2081] = {.lex_state = 53}, + [2082] = {.lex_state = 40}, + [2083] = {.lex_state = 40}, + [2084] = {.lex_state = 0}, + [2085] = {.lex_state = 140}, + [2086] = {.lex_state = 64}, [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, + [2089] = {.lex_state = 64}, + [2090] = {.lex_state = 64}, + [2091] = {.lex_state = 64}, [2092] = {.lex_state = 64}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 40}, - [2097] = {.lex_state = 64}, - [2098] = {.lex_state = 40}, - [2099] = {.lex_state = 40}, + [2093] = {.lex_state = 53}, + [2094] = {.lex_state = 40}, + [2095] = {.lex_state = 53}, + [2096] = {.lex_state = 140}, + [2097] = {.lex_state = 53}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 140}, [2100] = {.lex_state = 53}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 64}, - [2105] = {.lex_state = 64}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 53}, [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 53}, + [2107] = {.lex_state = 64}, [2108] = {.lex_state = 53}, - [2109] = {.lex_state = 53}, - [2110] = {.lex_state = 53}, - [2111] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 64}, + [2111] = {.lex_state = 53}, [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 40}, + [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 53}, - [2116] = {.lex_state = 40}, - [2117] = {.lex_state = 0}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 64}, [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 53}, - [2120] = {.lex_state = 53}, - [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 40}, - [2124] = {.lex_state = 0}, + [2119] = {.lex_state = 64}, + [2120] = {.lex_state = 40}, + [2121] = {.lex_state = 53}, + [2122] = {.lex_state = 53}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 53}, [2125] = {.lex_state = 0}, [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0}, [2128] = {.lex_state = 0}, [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 53}, - [2133] = {.lex_state = 140}, - [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 53}, - [2136] = {.lex_state = 64}, - [2137] = {.lex_state = 64}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 53}, - [2140] = {.lex_state = 53}, - [2141] = {.lex_state = 64}, - [2142] = {.lex_state = 40}, + [2130] = {.lex_state = 64}, + [2131] = {.lex_state = 64}, + [2132] = {.lex_state = 140}, + [2133] = {.lex_state = 64}, + [2134] = {.lex_state = 40}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 0}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 53}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 0}, [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 64}, - [2146] = {.lex_state = 0}, + [2144] = {.lex_state = 40}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 64}, [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 64}, + [2148] = {.lex_state = 140}, [2149] = {.lex_state = 0}, [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 53}, - [2153] = {.lex_state = 64}, - [2154] = {.lex_state = 64}, - [2155] = {.lex_state = 64}, - [2156] = {.lex_state = 53}, - [2157] = {.lex_state = 40}, - [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 40}, - [2160] = {.lex_state = 140}, - [2161] = {.lex_state = 64}, - [2162] = {.lex_state = 53}, + [2151] = {.lex_state = 53}, + [2152] = {.lex_state = 64}, + [2153] = {.lex_state = 40}, + [2154] = {.lex_state = 53}, + [2155] = {.lex_state = 53}, + [2156] = {.lex_state = 40}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 53}, + [2159] = {.lex_state = 53}, + [2160] = {.lex_state = 64}, + [2161] = {.lex_state = 40}, + [2162] = {.lex_state = 0}, [2163] = {.lex_state = 0}, [2164] = {.lex_state = 0}, [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 40}, - [2167] = {.lex_state = 53}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 64}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 64}, + [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 64}, - [2173] = {.lex_state = 0}, + [2171] = {.lex_state = 40}, + [2172] = {.lex_state = 0}, + [2173] = {.lex_state = 40}, [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, + [2175] = {.lex_state = 140}, + [2176] = {.lex_state = 53}, + [2177] = {.lex_state = 53}, [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 64}, + [2179] = {.lex_state = 53}, [2180] = {.lex_state = 53}, [2181] = {.lex_state = 53}, - [2182] = {.lex_state = 0}, + [2182] = {.lex_state = 53}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 40}, - [2185] = {.lex_state = 0}, + [2184] = {.lex_state = 0}, + [2185] = {.lex_state = 53}, [2186] = {.lex_state = 53}, [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 40}, - [2189] = {.lex_state = 0}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 53}, [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, + [2191] = {.lex_state = 140}, [2192] = {.lex_state = 140}, [2193] = {.lex_state = 140}, - [2194] = {.lex_state = 140}, - [2195] = {.lex_state = 64}, + [2194] = {.lex_state = 64}, + [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 140}, + [2197] = {.lex_state = 140}, + [2198] = {.lex_state = 53}, + [2199] = {.lex_state = 0}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 40}, - [2203] = {.lex_state = 140}, + [2201] = {.lex_state = 53}, + [2202] = {.lex_state = 64}, + [2203] = {.lex_state = 53}, [2204] = {.lex_state = 40}, - [2205] = {.lex_state = 0}, + [2205] = {.lex_state = 53}, [2206] = {.lex_state = 140}, - [2207] = {.lex_state = 140}, - [2208] = {.lex_state = 0}, + [2207] = {.lex_state = 64}, + [2208] = {.lex_state = 53}, [2209] = {.lex_state = 140}, - [2210] = {.lex_state = 140}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 64}, - [2213] = {.lex_state = 140}, + [2210] = {.lex_state = 40}, + [2211] = {.lex_state = 140}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 53}, + [2216] = {.lex_state = 53}, + [2217] = {.lex_state = 53}, + [2218] = {.lex_state = 140}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 140}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 64}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 140}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 64}, + [2228] = {.lex_state = 140}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15521,7 +15572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2189), + [sym_translation_unit] = STATE(2187), [sym_preproc_include] = STATE(52), [sym_preproc_def] = STATE(52), [sym_preproc_function_def] = STATE(52), @@ -15529,24 +15580,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(52), [sym_preproc_ifdef] = STATE(52), [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(479), + [sym__old_style_function_definition] = STATE(462), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1471), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(860), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -15560,35 +15611,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(52), [sym_continue_statement] = STATE(52), [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1300), - [sym__expression_not_binary] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1302), + [sym__expression_not_binary] = STATE(1305), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(1305), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_alignof_expression] = STATE(1305), + [sym_offsetof_expression] = STATE(1305), + [sym_generic_expression] = STATE(1305), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(1305), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(1305), + [sym_concatenated_string] = STATE(1305), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(1305), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15683,79 +15734,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1956), - [sym_preproc_elif] = STATE(1956), - [sym_preproc_elifdef] = STATE(1956), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1988), + [sym_preproc_elif] = STATE(1988), + [sym_preproc_elifdef] = STATE(1988), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym_seh_try_statement] = STATE(6), - [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15863,28 +15914,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(10), [sym_preproc_if] = STATE(10), [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(2152), - [sym_preproc_elif] = STATE(2152), - [sym_preproc_elifdef] = STATE(2152), + [sym_preproc_else] = STATE(1955), + [sym_preproc_elif] = STATE(1955), + [sym_preproc_elifdef] = STATE(1955), [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(143), + [sym__old_style_function_definition] = STATE(158), [sym_declaration] = STATE(10), [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(10), [sym_labeled_statement] = STATE(10), [sym_expression_statement] = STATE(10), @@ -15900,36 +15951,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(10), [sym_seh_try_statement] = STATE(10), [sym_seh_leave_statement] = STATE(10), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16031,79 +16082,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(2100), - [sym_preproc_elif] = STATE(2100), - [sym_preproc_elifdef] = STATE(2100), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(2185), + [sym_preproc_elif] = STATE(2185), + [sym_preproc_elifdef] = STATE(2185), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym_seh_try_statement] = STATE(9), - [sym_seh_leave_statement] = STATE(9), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16205,79 +16256,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(2139), - [sym_preproc_elif] = STATE(2139), - [sym_preproc_elifdef] = STATE(2139), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(2205), + [sym_preproc_elif] = STATE(2205), + [sym_preproc_elifdef] = STATE(2205), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_seh_try_statement] = STATE(4), + [sym_seh_leave_statement] = STATE(4), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16379,79 +16430,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(2049), - [sym_preproc_elif] = STATE(2049), - [sym_preproc_elifdef] = STATE(2049), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1962), + [sym_preproc_elif] = STATE(1962), + [sym_preproc_elifdef] = STATE(1962), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16553,79 +16604,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(2162), - [sym_preproc_elif] = STATE(2162), - [sym_preproc_elifdef] = STATE(2162), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(2009), + [sym_preproc_elif] = STATE(2009), + [sym_preproc_elifdef] = STATE(2009), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym_seh_try_statement] = STATE(5), - [sym_seh_leave_statement] = STATE(5), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_seh_try_statement] = STATE(2), + [sym_seh_leave_statement] = STATE(2), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16727,79 +16778,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(1989), - [sym_preproc_elif] = STATE(1989), - [sym_preproc_elifdef] = STATE(1989), - [sym_function_definition] = STATE(11), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(1979), + [sym_preproc_elif] = STATE(1979), + [sym_preproc_elifdef] = STATE(1979), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym_seh_try_statement] = STATE(11), - [sym_seh_leave_statement] = STATE(11), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym_seh_try_statement] = STATE(6), + [sym_seh_leave_statement] = STATE(6), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16901,79 +16952,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(2135), - [sym_preproc_elif] = STATE(2135), - [sym_preproc_elifdef] = STATE(2135), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(2079), + [sym_preproc_elif] = STATE(2079), + [sym_preproc_elifdef] = STATE(2079), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17075,79 +17126,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(2109), - [sym_preproc_elif] = STATE(2109), - [sym_preproc_elifdef] = STATE(2109), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1989), + [sym_preproc_elif] = STATE(1989), + [sym_preproc_elifdef] = STATE(1989), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17249,79 +17300,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1977), - [sym_preproc_elif] = STATE(1977), - [sym_preproc_elifdef] = STATE(1977), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(2093), + [sym_preproc_elif] = STATE(2093), + [sym_preproc_elifdef] = STATE(2093), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym_seh_try_statement] = STATE(9), + [sym_seh_leave_statement] = STATE(9), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17423,204 +17474,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(143), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(182), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(188), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(193), - [aux_sym_preproc_else_token1] = ACTIONS(191), - [aux_sym_preproc_elif_token1] = ACTIONS(191), - [aux_sym_preproc_elifdef_token1] = ACTIONS(191), - [aux_sym_preproc_elifdef_token2] = ACTIONS(191), - [sym_preproc_directive] = ACTIONS(196), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym___extension__] = ACTIONS(214), - [anon_sym_typedef] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(220), - [anon_sym___attribute__] = ACTIONS(223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(226), - [anon_sym___declspec] = ACTIONS(229), - [anon_sym___cdecl] = ACTIONS(232), - [anon_sym___clrcall] = ACTIONS(232), - [anon_sym___stdcall] = ACTIONS(232), - [anon_sym___fastcall] = ACTIONS(232), - [anon_sym___thiscall] = ACTIONS(232), - [anon_sym___vectorcall] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_signed] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_static] = ACTIONS(241), - [anon_sym_auto] = ACTIONS(241), - [anon_sym_register] = ACTIONS(241), - [anon_sym_inline] = ACTIONS(241), - [anon_sym___inline] = ACTIONS(241), - [anon_sym___inline__] = ACTIONS(241), - [anon_sym___forceinline] = ACTIONS(241), - [anon_sym_thread_local] = ACTIONS(241), - [anon_sym___thread] = ACTIONS(241), - [anon_sym_const] = ACTIONS(244), - [anon_sym_constexpr] = ACTIONS(244), - [anon_sym_volatile] = ACTIONS(244), - [anon_sym_restrict] = ACTIONS(244), - [anon_sym___restrict__] = ACTIONS(244), - [anon_sym__Atomic] = ACTIONS(244), - [anon_sym__Noreturn] = ACTIONS(244), - [anon_sym_noreturn] = ACTIONS(244), - [sym_primitive_type] = ACTIONS(247), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_union] = ACTIONS(256), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_case] = ACTIONS(265), - [anon_sym_default] = ACTIONS(268), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(274), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(280), - [anon_sym_break] = ACTIONS(283), - [anon_sym_continue] = ACTIONS(286), - [anon_sym_goto] = ACTIONS(289), - [anon_sym___try] = ACTIONS(292), - [anon_sym___leave] = ACTIONS(295), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_sizeof] = ACTIONS(301), - [anon_sym___alignof__] = ACTIONS(304), - [anon_sym___alignof] = ACTIONS(304), - [anon_sym__alignof] = ACTIONS(304), - [anon_sym_alignof] = ACTIONS(304), - [anon_sym__Alignof] = ACTIONS(304), - [anon_sym_offsetof] = ACTIONS(307), - [anon_sym__Generic] = ACTIONS(310), - [anon_sym_asm] = ACTIONS(313), - [anon_sym___asm__] = ACTIONS(313), - [sym_number_literal] = ACTIONS(316), - [anon_sym_L_SQUOTE] = ACTIONS(319), - [anon_sym_u_SQUOTE] = ACTIONS(319), - [anon_sym_U_SQUOTE] = ACTIONS(319), - [anon_sym_u8_SQUOTE] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_L_DQUOTE] = ACTIONS(322), - [anon_sym_u_DQUOTE] = ACTIONS(322), - [anon_sym_U_DQUOTE] = ACTIONS(322), - [anon_sym_u8_DQUOTE] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [anon_sym_NULL] = ACTIONS(328), - [anon_sym_nullptr] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - }, - [13] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2156), - [sym_preproc_elif] = STATE(2156), + [sym_preproc_else] = STATE(2208), + [sym_preproc_elif] = STATE(2208), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), + [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17636,46 +17516,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), - [aux_sym_preproc_if_token2] = ACTIONS(339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17683,10 +17563,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17696,7 +17576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17722,19 +17602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -17764,89 +17644,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2060), - [sym_preproc_elif] = STATE(2060), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(863), + [13] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2025), + [sym_preproc_elif] = STATE(2025), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), - [aux_sym_preproc_if_token2] = ACTIONS(381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17854,10 +17734,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17867,7 +17747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17893,19 +17773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -17935,6 +17815,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [14] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(158), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(231), + [aux_sym_preproc_include_token1] = ACTIONS(234), + [aux_sym_preproc_def_token1] = ACTIONS(237), + [aux_sym_preproc_if_token1] = ACTIONS(240), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(243), + [aux_sym_preproc_elif_token1] = ACTIONS(243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(243), + [aux_sym_preproc_elifdef_token2] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(248), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym___extension__] = ACTIONS(266), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(272), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(314), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(320), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(329), + [anon_sym_return] = ACTIONS(332), + [anon_sym_break] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_goto] = ACTIONS(341), + [anon_sym___try] = ACTIONS(344), + [anon_sym___leave] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, [15] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), @@ -17942,27 +17993,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1991), - [sym_preproc_elif] = STATE(1991), + [sym_preproc_else] = STATE(2071), + [sym_preproc_elif] = STATE(2071), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), + [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17978,46 +18029,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18025,10 +18076,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18038,7 +18089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18064,19 +18115,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18107,88 +18158,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1992), - [sym_preproc_elif] = STATE(1992), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2095), + [sym_preproc_elif] = STATE(2095), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym_seh_try_statement] = STATE(24), - [sym_seh_leave_statement] = STATE(24), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18196,10 +18247,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18209,7 +18260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18235,19 +18286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18284,27 +18335,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1965), - [sym_preproc_elif] = STATE(1965), + [sym_preproc_else] = STATE(2017), + [sym_preproc_elif] = STATE(2017), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), + [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18320,46 +18371,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18367,10 +18418,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18380,7 +18431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18406,19 +18457,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18449,88 +18500,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2033), - [sym_preproc_elif] = STATE(2033), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2081), + [sym_preproc_elif] = STATE(2081), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18538,10 +18589,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18551,7 +18602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18577,19 +18628,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18620,88 +18671,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(2132), - [sym_preproc_elif] = STATE(2132), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1986), + [sym_preproc_elif] = STATE(1986), + [sym_function_definition] = STATE(17), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym_seh_try_statement] = STATE(17), + [sym_seh_leave_statement] = STATE(17), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18709,10 +18760,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18722,7 +18773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18748,19 +18799,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18791,88 +18842,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2140), - [sym_preproc_elif] = STATE(2140), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(2201), + [sym_preproc_elif] = STATE(2201), + [sym_function_definition] = STATE(12), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym_seh_try_statement] = STATE(12), + [sym_seh_leave_statement] = STATE(12), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18880,10 +18931,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18893,7 +18944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18919,19 +18970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18962,88 +19013,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2061), - [sym_preproc_elif] = STATE(2061), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_call] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(1948), + [sym_preproc_elif] = STATE(1948), + [sym_function_definition] = STATE(13), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym_seh_try_statement] = STATE(13), + [sym_seh_leave_statement] = STATE(13), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19051,10 +19102,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19064,7 +19115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19090,19 +19141,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19133,88 +19184,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1983), - [sym_preproc_elif] = STATE(1983), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2097), + [sym_preproc_elif] = STATE(2097), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19222,10 +19273,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19235,7 +19286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19261,19 +19312,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19304,88 +19355,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(2050), - [sym_preproc_elif] = STATE(2050), - [sym_function_definition] = STATE(18), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2138), + [sym_preproc_elif] = STATE(2138), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_seh_try_statement] = STATE(18), - [sym_seh_leave_statement] = STATE(18), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19393,10 +19444,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19406,7 +19457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19432,19 +19483,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19475,88 +19526,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1949), - [sym_preproc_elif] = STATE(1949), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(1990), + [sym_preproc_elif] = STATE(1990), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19564,10 +19615,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19577,7 +19628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19603,19 +19654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19646,88 +19697,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(2110), - [sym_preproc_elif] = STATE(2110), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(207), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2026), + [sym_preproc_elif] = STATE(2026), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(863), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym_seh_try_statement] = STATE(21), - [sym_seh_leave_statement] = STATE(21), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym_seh_try_statement] = STATE(22), + [sym_seh_leave_statement] = STATE(22), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19735,10 +19786,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19748,7 +19799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19774,19 +19825,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19823,27 +19874,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2120), - [sym_preproc_elif] = STATE(2120), + [sym_preproc_else] = STATE(1976), + [sym_preproc_elif] = STATE(1976), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), + [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19859,46 +19910,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(331), - [aux_sym_preproc_include_token1] = ACTIONS(333), - [aux_sym_preproc_def_token1] = ACTIONS(335), - [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), [aux_sym_preproc_if_token2] = ACTIONS(405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(343), + [sym_preproc_directive] = ACTIONS(191), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19906,10 +19957,10 @@ static const uint16_t ts_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(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), - [anon_sym_extern] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19919,7 +19970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19945,19 +19996,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19995,24 +20046,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(207), + [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(863), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1478), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(859), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20028,92 +20079,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(407), [aux_sym_preproc_include_token1] = ACTIONS(410), [aux_sym_preproc_def_token1] = ACTIONS(413), [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_if_token2] = ACTIONS(243), [aux_sym_preproc_ifdef_token1] = ACTIONS(419), [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(191), - [aux_sym_preproc_elif_token1] = ACTIONS(191), + [aux_sym_preproc_else_token1] = ACTIONS(243), + [aux_sym_preproc_elif_token1] = ACTIONS(243), [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), [anon_sym_SEMI] = ACTIONS(425), [anon_sym___extension__] = ACTIONS(428), [anon_sym_typedef] = ACTIONS(431), [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(226), - [anon_sym___declspec] = ACTIONS(229), - [anon_sym___cdecl] = ACTIONS(232), - [anon_sym___clrcall] = ACTIONS(232), - [anon_sym___stdcall] = ACTIONS(232), - [anon_sym___fastcall] = ACTIONS(232), - [anon_sym___thiscall] = ACTIONS(232), - [anon_sym___vectorcall] = ACTIONS(232), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_static] = ACTIONS(241), - [anon_sym_auto] = ACTIONS(241), - [anon_sym_register] = ACTIONS(241), - [anon_sym_inline] = ACTIONS(241), - [anon_sym___inline] = ACTIONS(241), - [anon_sym___inline__] = ACTIONS(241), - [anon_sym___forceinline] = ACTIONS(241), - [anon_sym_thread_local] = ACTIONS(241), - [anon_sym___thread] = ACTIONS(241), - [anon_sym_const] = ACTIONS(244), - [anon_sym_constexpr] = ACTIONS(244), - [anon_sym_volatile] = ACTIONS(244), - [anon_sym_restrict] = ACTIONS(244), - [anon_sym___restrict__] = ACTIONS(244), - [anon_sym__Atomic] = ACTIONS(244), - [anon_sym__Noreturn] = ACTIONS(244), - [anon_sym_noreturn] = ACTIONS(244), - [sym_primitive_type] = ACTIONS(247), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_union] = ACTIONS(256), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), [anon_sym_if] = ACTIONS(440), [anon_sym_switch] = ACTIONS(443), [anon_sym_case] = ACTIONS(446), @@ -20127,106 +20178,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(470), [anon_sym___try] = ACTIONS(473), [anon_sym___leave] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_sizeof] = ACTIONS(301), - [anon_sym___alignof__] = ACTIONS(304), - [anon_sym___alignof] = ACTIONS(304), - [anon_sym__alignof] = ACTIONS(304), - [anon_sym_alignof] = ACTIONS(304), - [anon_sym__Alignof] = ACTIONS(304), - [anon_sym_offsetof] = ACTIONS(307), - [anon_sym__Generic] = ACTIONS(310), - [anon_sym_asm] = ACTIONS(313), - [anon_sym___asm__] = ACTIONS(313), - [sym_number_literal] = ACTIONS(316), - [anon_sym_L_SQUOTE] = ACTIONS(319), - [anon_sym_u_SQUOTE] = ACTIONS(319), - [anon_sym_U_SQUOTE] = ACTIONS(319), - [anon_sym_u8_SQUOTE] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_L_DQUOTE] = ACTIONS(322), - [anon_sym_u_DQUOTE] = ACTIONS(322), - [anon_sym_U_DQUOTE] = ACTIONS(322), - [anon_sym_u8_DQUOTE] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [anon_sym_NULL] = ACTIONS(328), - [anon_sym_nullptr] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20324,76 +20375,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20491,84 +20542,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(404), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1472), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(533), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(543), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym_seh_try_statement] = STATE(28), + [sym_seh_leave_statement] = STATE(28), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20576,10 +20626,10 @@ static const uint16_t ts_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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20589,7 +20639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20615,19 +20666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20658,76 +20709,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20756,7 +20807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20825,76 +20876,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20923,7 +20974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20999,24 +21050,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(373), + [sym__old_style_function_definition] = STATE(362), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym_expression_statement] = STATE(44), @@ -21032,36 +21083,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(44), [sym_seh_try_statement] = STATE(44), [sym_seh_leave_statement] = STATE(44), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21090,7 +21141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21166,24 +21217,24 @@ 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(373), + [sym__old_style_function_definition] = STATE(362), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -21199,36 +21250,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21257,7 +21308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(539), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21326,243 +21377,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [35] = { - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(356), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(51), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(589), - [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), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(860), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(541), + [aux_sym_preproc_include_token1] = ACTIONS(544), + [aux_sym_preproc_def_token1] = ACTIONS(547), + [aux_sym_preproc_if_token1] = ACTIONS(550), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(556), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym___extension__] = ACTIONS(562), + [anon_sym_typedef] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(568), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_case] = ACTIONS(580), + [anon_sym_default] = ACTIONS(583), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(589), + [anon_sym_for] = ACTIONS(592), + [anon_sym_return] = ACTIONS(595), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(607), + [anon_sym___leave] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), [sym_comment] = ACTIONS(3), }, [36] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21591,7 +21642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21660,76 +21711,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym_seh_try_statement] = STATE(36), + [sym_seh_leave_statement] = STATE(36), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21758,7 +21809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21827,76 +21878,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_seh_try_statement] = STATE(31), + [sym_seh_leave_statement] = STATE(31), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21925,7 +21976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21994,76 +22045,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22092,7 +22143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22161,76 +22212,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_seh_try_statement] = STATE(43), - [sym_seh_leave_statement] = STATE(43), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22259,7 +22310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22328,243 +22379,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(404), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1472), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(356), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(860), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(601), - [aux_sym_preproc_include_token1] = ACTIONS(604), - [aux_sym_preproc_def_token1] = ACTIONS(607), - [aux_sym_preproc_if_token1] = ACTIONS(610), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(613), - [sym_preproc_directive] = ACTIONS(616), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym___extension__] = ACTIONS(622), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(628), - [anon_sym___attribute__] = ACTIONS(223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(226), - [anon_sym___declspec] = ACTIONS(229), - [anon_sym___cdecl] = ACTIONS(232), - [anon_sym___clrcall] = ACTIONS(232), - [anon_sym___stdcall] = ACTIONS(232), - [anon_sym___fastcall] = ACTIONS(232), - [anon_sym___thiscall] = ACTIONS(232), - [anon_sym___vectorcall] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_signed] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_static] = ACTIONS(241), - [anon_sym_auto] = ACTIONS(241), - [anon_sym_register] = ACTIONS(241), - [anon_sym_inline] = ACTIONS(241), - [anon_sym___inline] = ACTIONS(241), - [anon_sym___inline__] = ACTIONS(241), - [anon_sym___forceinline] = ACTIONS(241), - [anon_sym_thread_local] = ACTIONS(241), - [anon_sym___thread] = ACTIONS(241), - [anon_sym_const] = ACTIONS(244), - [anon_sym_constexpr] = ACTIONS(244), - [anon_sym_volatile] = ACTIONS(244), - [anon_sym_restrict] = ACTIONS(244), - [anon_sym___restrict__] = ACTIONS(244), - [anon_sym__Atomic] = ACTIONS(244), - [anon_sym__Noreturn] = ACTIONS(244), - [anon_sym_noreturn] = ACTIONS(244), - [sym_primitive_type] = ACTIONS(247), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_union] = ACTIONS(256), - [anon_sym_if] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(637), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(643), - [anon_sym_while] = ACTIONS(646), - [anon_sym_do] = ACTIONS(649), - [anon_sym_for] = ACTIONS(652), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_goto] = ACTIONS(664), - [anon_sym___try] = ACTIONS(667), - [anon_sym___leave] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_sizeof] = ACTIONS(301), - [anon_sym___alignof__] = ACTIONS(304), - [anon_sym___alignof] = ACTIONS(304), - [anon_sym__alignof] = ACTIONS(304), - [anon_sym_alignof] = ACTIONS(304), - [anon_sym__Alignof] = ACTIONS(304), - [anon_sym_offsetof] = ACTIONS(307), - [anon_sym__Generic] = ACTIONS(310), - [anon_sym_asm] = ACTIONS(313), - [anon_sym___asm__] = ACTIONS(313), - [sym_number_literal] = ACTIONS(316), - [anon_sym_L_SQUOTE] = ACTIONS(319), - [anon_sym_u_SQUOTE] = ACTIONS(319), - [anon_sym_U_SQUOTE] = ACTIONS(319), - [anon_sym_u8_SQUOTE] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_L_DQUOTE] = ACTIONS(322), - [anon_sym_u_DQUOTE] = ACTIONS(322), - [anon_sym_U_DQUOTE] = ACTIONS(322), - [anon_sym_u8_DQUOTE] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [anon_sym_NULL] = ACTIONS(328), - [anon_sym_nullptr] = ACTIONS(328), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(625), + [aux_sym_preproc_def_token1] = ACTIONS(627), + [aux_sym_preproc_if_token1] = ACTIONS(629), + [aux_sym_preproc_if_token2] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(635), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(645), + [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), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_seh_try_statement] = STATE(37), - [sym_seh_leave_statement] = STATE(37), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(45), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22662,76 +22713,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym_seh_try_statement] = STATE(32), + [sym_seh_leave_statement] = STATE(32), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22829,76 +22880,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22996,84 +23047,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(404), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1472), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(533), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(543), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23081,10 +23131,10 @@ static const uint16_t ts_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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -23094,7 +23144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(679), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23120,19 +23171,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23170,24 +23221,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), + [sym__old_style_function_definition] = STATE(362), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -23203,36 +23254,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(50), [sym_seh_try_statement] = STATE(50), [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23330,76 +23381,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23497,76 +23548,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym_seh_try_statement] = STATE(31), - [sym_seh_leave_statement] = STATE(31), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23664,76 +23715,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(687), + [aux_sym_preproc_include_token1] = ACTIONS(690), + [aux_sym_preproc_def_token1] = ACTIONS(693), + [aux_sym_preproc_if_token1] = ACTIONS(696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(699), + [sym_preproc_directive] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym___extension__] = ACTIONS(708), + [anon_sym_typedef] = ACTIONS(711), + [anon_sym_extern] = ACTIONS(714), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(722), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_case] = ACTIONS(728), + [anon_sym_default] = ACTIONS(731), + [anon_sym_while] = ACTIONS(734), + [anon_sym_do] = ACTIONS(737), + [anon_sym_for] = ACTIONS(740), + [anon_sym_return] = ACTIONS(743), + [anon_sym_break] = ACTIONS(746), + [anon_sym_continue] = ACTIONS(749), + [anon_sym_goto] = ACTIONS(752), + [anon_sym___try] = ACTIONS(755), + [anon_sym___leave] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, + [50] = { + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(362), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1474), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(854), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23762,7 +23980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23830,251 +24048,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(689), - [aux_sym_preproc_include_token1] = ACTIONS(692), - [aux_sym_preproc_def_token1] = ACTIONS(695), - [aux_sym_preproc_if_token1] = ACTIONS(698), - [aux_sym_preproc_ifdef_token1] = ACTIONS(701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(701), - [sym_preproc_directive] = ACTIONS(704), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym___extension__] = ACTIONS(710), - [anon_sym_typedef] = ACTIONS(713), - [anon_sym_extern] = ACTIONS(716), - [anon_sym___attribute__] = ACTIONS(223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(226), - [anon_sym___declspec] = ACTIONS(229), - [anon_sym___cdecl] = ACTIONS(232), - [anon_sym___clrcall] = ACTIONS(232), - [anon_sym___stdcall] = ACTIONS(232), - [anon_sym___fastcall] = ACTIONS(232), - [anon_sym___thiscall] = ACTIONS(232), - [anon_sym___vectorcall] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_signed] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_static] = ACTIONS(241), - [anon_sym_auto] = ACTIONS(241), - [anon_sym_register] = ACTIONS(241), - [anon_sym_inline] = ACTIONS(241), - [anon_sym___inline] = ACTIONS(241), - [anon_sym___inline__] = ACTIONS(241), - [anon_sym___forceinline] = ACTIONS(241), - [anon_sym_thread_local] = ACTIONS(241), - [anon_sym___thread] = ACTIONS(241), - [anon_sym_const] = ACTIONS(244), - [anon_sym_constexpr] = ACTIONS(244), - [anon_sym_volatile] = ACTIONS(244), - [anon_sym_restrict] = ACTIONS(244), - [anon_sym___restrict__] = ACTIONS(244), - [anon_sym__Atomic] = ACTIONS(244), - [anon_sym__Noreturn] = ACTIONS(244), - [anon_sym_noreturn] = ACTIONS(244), - [sym_primitive_type] = ACTIONS(247), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_union] = ACTIONS(256), - [anon_sym_if] = ACTIONS(724), - [anon_sym_switch] = ACTIONS(727), - [anon_sym_case] = ACTIONS(730), - [anon_sym_default] = ACTIONS(733), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(739), - [anon_sym_for] = ACTIONS(742), - [anon_sym_return] = ACTIONS(745), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(751), - [anon_sym_goto] = ACTIONS(754), - [anon_sym___try] = ACTIONS(757), - [anon_sym___leave] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_sizeof] = ACTIONS(301), - [anon_sym___alignof__] = ACTIONS(304), - [anon_sym___alignof] = ACTIONS(304), - [anon_sym__alignof] = ACTIONS(304), - [anon_sym_alignof] = ACTIONS(304), - [anon_sym__Alignof] = ACTIONS(304), - [anon_sym_offsetof] = ACTIONS(307), - [anon_sym__Generic] = ACTIONS(310), - [anon_sym_asm] = ACTIONS(313), - [anon_sym___asm__] = ACTIONS(313), - [sym_number_literal] = ACTIONS(316), - [anon_sym_L_SQUOTE] = ACTIONS(319), - [anon_sym_u_SQUOTE] = ACTIONS(319), - [anon_sym_U_SQUOTE] = ACTIONS(319), - [anon_sym_u8_SQUOTE] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_L_DQUOTE] = ACTIONS(322), - [anon_sym_u_DQUOTE] = ACTIONS(322), - [anon_sym_U_DQUOTE] = ACTIONS(322), - [anon_sym_u8_DQUOTE] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_true] = ACTIONS(325), - [sym_false] = ACTIONS(325), - [anon_sym_NULL] = ACTIONS(328), - [anon_sym_nullptr] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - }, [51] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(373), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1473), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(863), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(356), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(860), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(625), + [aux_sym_preproc_def_token1] = ACTIONS(627), + [aux_sym_preproc_if_token1] = ACTIONS(629), + [aux_sym_preproc_if_token2] = ACTIONS(763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(635), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24082,10 +24134,10 @@ static const uint16_t ts_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(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(643), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -24095,8 +24147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(645), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24122,19 +24173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -24172,24 +24223,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(479), + [sym__old_style_function_definition] = STATE(462), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1471), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(860), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24203,35 +24254,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1300), - [sym__expression_not_binary] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1302), + [sym__expression_not_binary] = STATE(1305), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(1305), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_alignof_expression] = STATE(1305), + [sym_offsetof_expression] = STATE(1305), + [sym_generic_expression] = STATE(1305), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(1305), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(1305), + [sym_concatenated_string] = STATE(1305), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(1305), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -24333,24 +24384,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(479), + [sym__old_style_function_definition] = STATE(462), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1471), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_call_modifier] = STATE(860), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24364,35 +24415,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1300), - [sym__expression_not_binary] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1302), + [sym__expression_not_binary] = STATE(1305), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(1305), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_alignof_expression] = STATE(1305), + [sym_offsetof_expression] = STATE(1305), + [sym_generic_expression] = STATE(1305), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(1305), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(1305), + [sym_concatenated_string] = STATE(1305), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(1305), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1099), + [sym_macro_type_specifier] = STATE(1115), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [ts_builtin_sym_end] = ACTIONS(767), [sym_identifier] = ACTIONS(769), [aux_sym_preproc_include_token1] = ACTIONS(772), @@ -24487,64 +24538,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(56), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(55), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(912), [aux_sym_preproc_def_token1] = ACTIONS(912), @@ -24647,76 +24698,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [aux_sym_preproc_else_token1] = ACTIONS(917), + [aux_sym_preproc_elif_token1] = ACTIONS(917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym___extension__] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(982), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_goto] = ACTIONS(997), + [anon_sym___try] = ACTIONS(1000), + [anon_sym___leave] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym_seh_try_statement] = STATE(57), - [sym_seh_leave_statement] = STATE(57), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(57), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(55), [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [aux_sym_preproc_else_token1] = ACTIONS(914), - [aux_sym_preproc_elif_token1] = ACTIONS(914), - [aux_sym_preproc_elifdef_token1] = ACTIONS(914), - [aux_sym_preproc_elifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24731,12 +24942,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(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___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24764,10 +24975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -24806,77 +25017,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(863), + [57] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(58), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(910), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(916), - [aux_sym_preproc_elif_token1] = ACTIONS(916), - [aux_sym_preproc_elifdef_token1] = ACTIONS(916), - [aux_sym_preproc_elifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [aux_sym_preproc_else_token1] = ACTIONS(1041), + [aux_sym_preproc_elif_token1] = ACTIONS(1041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24891,12 +25102,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(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24924,10 +25135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -24966,77 +25177,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(863), + [58] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(58), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(910), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [aux_sym_preproc_elifdef_token1] = ACTIONS(918), - [aux_sym_preproc_elifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25051,12 +25262,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(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___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25084,10 +25295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25126,235 +25337,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(863), + [59] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym___extension__] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(985), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(991), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1003), - [anon_sym___try] = ACTIONS(1006), - [anon_sym___leave] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(1045), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [aux_sym_preproc_else_token1] = ACTIONS(917), + [aux_sym_preproc_elif_token1] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym___extension__] = ACTIONS(1051), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1063), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1069), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym___try] = ACTIONS(1087), + [anon_sym___leave] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1492), - [sym_attribute_specifier] = STATE(863), + [60] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1491), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [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(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1045), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(916), - [aux_sym_preproc_elif_token1] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(1093), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25362,20 +25571,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [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(353), + [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(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25401,20 +25610,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25444,22 +25653,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [60] = { + [61] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1492), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1491), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -25474,45 +25683,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1045), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25520,20 +25729,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [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(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(353), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25559,20 +25768,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25602,233 +25811,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1492), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [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(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1047), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym___extension__] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym___try] = ACTIONS(1089), - [anon_sym___leave] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, [62] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1492), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1491), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [aux_sym_preproc_else_token1] = ACTIONS(914), - [aux_sym_preproc_elif_token1] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [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(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25836,20 +25887,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [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(353), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25875,20 +25926,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25921,19 +25972,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [63] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1492), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1491), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -25948,45 +25999,45 @@ 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(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1045), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [aux_sym_preproc_else_token1] = ACTIONS(1041), + [aux_sym_preproc_elif_token1] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25994,20 +26045,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym___extension__] = ACTIONS(347), - [anon_sym_typedef] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [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(353), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26033,20 +26084,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(355), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26077,72 +26128,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(68), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(74), [ts_builtin_sym_end] = ACTIONS(1095), [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26157,12 +26208,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(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___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26190,10 +26241,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -26233,228 +26284,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1105), - [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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), - [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(553), - [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), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1105), + [sym_identifier] = ACTIONS(1107), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym___extension__] = ACTIONS(1113), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1149), + [anon_sym___leave] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1493), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1105), - [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), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26462,20 +26512,21 @@ static const uint16_t ts_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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [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(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(553), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1157), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26501,20 +26552,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26545,333 +26596,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1097), - [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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [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(41), - [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), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1111), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym___extension__] = ACTIONS(1117), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, - [69] = { [sym_declaration] = STATE(73), [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1496), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1502), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(73), [sym_labeled_statement] = STATE(73), [sym_expression_statement] = STATE(73), @@ -26886,42 +26625,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(73), [sym_seh_try_statement] = STATE(73), [sym_seh_leave_statement] = STATE(73), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(73), [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = 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(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26929,21 +26669,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), [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(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(499), - [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(645), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26969,20 +26708,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27012,73 +26751,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(863), + [68] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1493), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(1105), - [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), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27086,20 +26824,21 @@ static const uint16_t ts_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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [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(553), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1095), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27125,20 +26864,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27168,22 +26907,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [71] = { + [69] = { [sym_declaration] = STATE(76), [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1493), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(76), [sym_labeled_statement] = STATE(76), [sym_expression_statement] = STATE(76), @@ -27198,43 +26937,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(76), [sym_seh_try_statement] = STATE(76), [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1105), - [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), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27242,20 +26980,21 @@ static const uint16_t ts_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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [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(553), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1161), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27281,20 +27020,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27324,73 +27063,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [70] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(1163), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1097), - [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), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27405,12 +27144,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(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27438,10 +27177,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -27480,72 +27219,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1496), - [sym_attribute_specifier] = STATE(863), + [71] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1502), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(78), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(75), [sym_identifier] = ACTIONS(1159), - [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), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27553,21 +27293,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), [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(499), - [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(645), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27593,20 +27332,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27636,73 +27375,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [72] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(72), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(65), [ts_builtin_sym_end] = ACTIONS(1161), [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = 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(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27717,12 +27456,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(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27750,10 +27489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -27792,22 +27531,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [75] = { + [73] = { [sym_declaration] = STATE(77), [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1496), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1502), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(77), [sym_labeled_statement] = STATE(77), [sym_expression_statement] = STATE(77), @@ -27822,42 +27561,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(77), [sym_seh_try_statement] = STATE(77), [sym_seh_leave_statement] = STATE(77), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(77), [sym_identifier] = ACTIONS(1159), - [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), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27865,21 +27605,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), [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(499), - [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(645), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27905,20 +27644,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [74] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = 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), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [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(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(41), + [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), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [75] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1502), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(1159), + [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), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym___extension__] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(641), + [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(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(645), + [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), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27951,19 +28002,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [76] = { [sym_declaration] = STATE(76), [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1493), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(76), [sym_labeled_statement] = STATE(76), [sym_expression_statement] = STATE(76), @@ -27978,94 +28029,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(76), [sym_seh_try_statement] = STATE(76), [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(76), [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), [anon_sym_SEMI] = ACTIONS(1168), [anon_sym___extension__] = ACTIONS(1171), [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(923), + [anon_sym_else] = ACTIONS(917), [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), [anon_sym_while] = ACTIONS(1186), [anon_sym_do] = ACTIONS(1189), [anon_sym_for] = ACTIONS(1192), @@ -28075,101 +28126,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1204), [anon_sym___try] = ACTIONS(1207), [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1496), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1502), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(917), + [aux_sym_preproc_def_token1] = ACTIONS(917), + [aux_sym_preproc_if_token1] = ACTIONS(917), + [aux_sym_preproc_if_token2] = ACTIONS(917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(917), + [sym_preproc_directive] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym___cdecl] = ACTIONS(917), + [anon_sym___clrcall] = ACTIONS(917), + [anon_sym___stdcall] = ACTIONS(917), + [anon_sym___fastcall] = ACTIONS(917), + [anon_sym___thiscall] = ACTIONS(917), + [anon_sym___vectorcall] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [78] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1493), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = 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), @@ -28184,14 +28391,14 @@ 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(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___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(499), - [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1163), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28218,10 +28425,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(511), [anon_sym_do] = ACTIONS(513), [anon_sym_for] = ACTIONS(515), @@ -28260,222 +28467,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1496), - [sym_attribute_specifier] = STATE(863), + [79] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1113), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(955), + [anon_sym_unsigned] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym___inline] = ACTIONS(940), + [anon_sym___inline__] = ACTIONS(940), + [anon_sym___forceinline] = ACTIONS(940), + [anon_sym_thread_local] = ACTIONS(940), + [anon_sym___thread] = ACTIONS(940), + [anon_sym_const] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_restrict] = ACTIONS(958), + [anon_sym___restrict__] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [anon_sym__Noreturn] = ACTIONS(958), + [anon_sym_noreturn] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(917), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym___alignof__] = ACTIONS(1012), + [anon_sym___alignof] = ACTIONS(1012), + [anon_sym__alignof] = ACTIONS(1012), + [anon_sym_alignof] = ACTIONS(1012), + [anon_sym__Alignof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1015), + [anon_sym__Generic] = ACTIONS(1018), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym___asm__] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1027), + [anon_sym_u_SQUOTE] = ACTIONS(1027), + [anon_sym_U_SQUOTE] = ACTIONS(1027), + [anon_sym_u8_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [anon_sym_NULL] = ACTIONS(1036), + [anon_sym_nullptr] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [80] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1261), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28516,17 +28708,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(918), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28557,66 +28749,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [81] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1261), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28657,17 +28849,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(916), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28698,22 +28890,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [81] = { + [82] = { [sym_declaration] = STATE(80), [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), [sym_attributed_statement] = STATE(80), [sym_labeled_statement] = STATE(80), [sym_expression_statement] = STATE(80), @@ -28728,36 +28920,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(80), [sym_seh_try_statement] = STATE(80), [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28798,17 +28990,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(912), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28839,207 +29031,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1117), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, [83] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(863), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1489), + [sym_attribute_specifier] = STATE(867), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(863), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_ms_declspec_modifier] = STATE(867), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1261), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29080,17 +29131,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(914), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -29122,47 +29173,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(1968), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(1944), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29232,47 +29283,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(2131), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(1983), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29342,47 +29393,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(2021), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(2101), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29452,47 +29503,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(2106), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(2036), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29562,47 +29613,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(2151), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(2190), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29672,47 +29723,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1486), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__for_statement_body] = STATE(2047), - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2130), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__for_statement_body] = STATE(2062), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2220), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29782,7 +29833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(102), + [sym_else_clause] = STATE(104), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -30089,207 +30140,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___except] = ACTIONS(1308), - [anon_sym___finally] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [anon_sym_COMMA] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___except] = ACTIONS(1306), + [anon_sym___finally] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [95] = { @@ -30905,105 +30956,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___except] = ACTIONS(1336), - [anon_sym___finally] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [102] = { @@ -31313,516 +31364,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [105] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1332), + [anon_sym_RPAREN] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___except] = ACTIONS(1330), + [anon_sym___finally] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [107] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [108] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [109] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [110] = { [sym_identifier] = ACTIONS(1354), [aux_sym_preproc_include_token1] = ACTIONS(1354), [aux_sym_preproc_def_token1] = ACTIONS(1354), @@ -31924,109 +31669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [111] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [112] = { + [108] = { [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -32128,129 +31771,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [113] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - }, - [114] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), + [109] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [110] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [111] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [112] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [113] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), [anon_sym___extension__] = ACTIONS(1366), [anon_sym_typedef] = ACTIONS(1366), [anon_sym_extern] = ACTIONS(1366), @@ -32332,109 +32281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [115] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [116] = { + [114] = { [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -32536,7 +32383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [117] = { + [115] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), @@ -32638,82 +32485,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [118] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), + [116] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [117] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), [anon_sym___alignof__] = ACTIONS(1378), [anon_sym___alignof] = ACTIONS(1378), [anon_sym__alignof] = ACTIONS(1378), @@ -32740,7 +32689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [119] = { + [118] = { [sym_identifier] = ACTIONS(1382), [aux_sym_preproc_include_token1] = ACTIONS(1382), [aux_sym_preproc_def_token1] = ACTIONS(1382), @@ -32842,7 +32791,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, + [119] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, [120] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [121] = { [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), [aux_sym_preproc_def_token1] = ACTIONS(1386), @@ -32944,7 +33097,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [121] = { + [122] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [123] = { [sym_identifier] = ACTIONS(1390), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1390), @@ -33046,109 +33301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [123] = { + [124] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), @@ -33250,415 +33403,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [124] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, [125] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [128] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [129] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [130] = { [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), [aux_sym_preproc_def_token1] = ACTIONS(1398), @@ -33760,514 +34015,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, [131] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [134] = { @@ -35483,7 +35534,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [146] = { - [sym_else_clause] = STATE(175), + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_else_clause] = STATE(201), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -35541,7 +35895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1450), + [anon_sym_else] = ACTIONS(1462), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -35583,309 +35937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, [150] = { [sym_identifier] = ACTIONS(1464), [aux_sym_preproc_include_token1] = ACTIONS(1464), @@ -36998,103 +37049,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [161] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, [162] = { @@ -37198,106 +37249,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, [164] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [168] = { [sym_identifier] = ACTIONS(1310), [aux_sym_preproc_include_token1] = ACTIONS(1310), [aux_sym_preproc_def_token1] = ACTIONS(1310), @@ -37397,4698 +37848,3506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [169] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [170] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [171] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [172] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [173] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [174] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [175] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [176] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [178] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [179] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [181] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [182] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [184] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [185] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [187] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [188] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [189] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [190] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_else_clause] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [191] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [193] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [194] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [195] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [196] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [197] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [200] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [201] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [202] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_else_clause] = STATE(265), + [203] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_else_clause] = STATE(305), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -42144,7 +41403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1508), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -42186,7 +41445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [213] = { + [205] = { [sym_identifier] = ACTIONS(1476), [aux_sym_preproc_include_token1] = ACTIONS(1476), [aux_sym_preproc_def_token1] = ACTIONS(1476), @@ -42273,415 +41532,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u_SQUOTE] = ACTIONS(1478), [anon_sym_U_SQUOTE] = ACTIONS(1478), [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_else_clause] = STATE(351), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [218] = { + [206] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [207] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -42780,106 +41742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [220] = { + [208] = { [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), [aux_sym_preproc_def_token1] = ACTIONS(1504), @@ -42978,304 +41841,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [209] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [210] = { + [sym_else_clause] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [211] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [224] = { + [212] = { [sym_identifier] = ACTIONS(1434), [aux_sym_preproc_include_token1] = ACTIONS(1434), [aux_sym_preproc_def_token1] = ACTIONS(1434), @@ -43374,205 +42237,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [213] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [aux_sym_preproc_else_token1] = ACTIONS(1446), - [aux_sym_preproc_elif_token1] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [214] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [227] = { + [216] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -43622,1725 +42584,1737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(1418), [anon_sym_restrict] = ACTIONS(1418), [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [217] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [218] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [220] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [221] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [222] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [223] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [224] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym__expression] = STATE(838), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(807), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_identifier] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1514), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1524), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [226] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [227] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [228] = { + [sym_else_clause] = STATE(302), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [230] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [231] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [245] = { + [233] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1372), [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -45369,7 +44343,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1370), [anon_sym___vectorcall] = ACTIONS(1370), [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(1370), [anon_sym_unsigned] = ACTIONS(1370), [anon_sym_long] = ACTIONS(1370), @@ -45438,203 +44411,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [235] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [236] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [248] = { + [237] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -45663,7 +44637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1298), [anon_sym___vectorcall] = ACTIONS(1298), [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), [anon_sym_signed] = ACTIONS(1298), [anon_sym_unsigned] = ACTIONS(1298), [anon_sym_long] = ACTIONS(1298), @@ -45732,791 +44705,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [238] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [240] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [241] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [243] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [244] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [257] = { + [246] = { [ts_builtin_sym_end] = ACTIONS(1312), [sym_identifier] = ACTIONS(1310), [aux_sym_preproc_include_token1] = ACTIONS(1310), @@ -46614,301 +45587,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [248] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [251] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [261] = { + [252] = { [ts_builtin_sym_end] = ACTIONS(1304), [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), @@ -47006,1188 +46175,1482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [253] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [254] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [255] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [256] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [258] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [259] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [261] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym__expression] = STATE(838), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(807), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_identifier] = ACTIONS(1526), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1532), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [262] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [263] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [264] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [265] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [266] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1376), + [268] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), [sym_preproc_directive] = ACTIONS(1374), @@ -48277,504 +47740,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1374), [sym_false] = ACTIONS(1374), [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [280] = { + [269] = { [sym_identifier] = ACTIONS(1310), [aux_sym_preproc_include_token1] = ACTIONS(1310), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), [sym_preproc_directive] = ACTIONS(1310), @@ -48799,7 +47773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1310), [anon_sym___vectorcall] = ACTIONS(1310), [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), [anon_sym_signed] = ACTIONS(1310), [anon_sym_unsigned] = ACTIONS(1310), [anon_sym_long] = ACTIONS(1310), @@ -48868,890 +47841,1281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [270] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [271] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [274] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [275] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [278] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [280] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [281] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [283] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -49780,6 +49144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1298), [anon_sym___vectorcall] = ACTIONS(1298), [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), [anon_sym_signed] = ACTIONS(1298), [anon_sym_unsigned] = ACTIONS(1298), [anon_sym_long] = ACTIONS(1298), @@ -49807,440 +49172,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1298), [anon_sym_if] = ACTIONS(1298), [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [295] = { + [284] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [285] = { [sym_identifier] = ACTIONS(1350), [aux_sym_preproc_include_token1] = ACTIONS(1350), [aux_sym_preproc_def_token1] = ACTIONS(1350), @@ -50338,306 +49409,796 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [286] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [291] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [292] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [299] = { + [293] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1380), [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), [sym_preproc_directive] = ACTIONS(1378), @@ -50730,404 +50291,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [295] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [298] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [299] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [300] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [304] = { + [301] = { [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), [sym_preproc_directive] = ACTIONS(1370), @@ -51152,6 +50908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1370), [anon_sym___vectorcall] = ACTIONS(1370), [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(1370), [anon_sym_unsigned] = ACTIONS(1370), [anon_sym_long] = ACTIONS(1370), @@ -51220,502 +50977,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [302] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [310] = { + [303] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), [sym_preproc_directive] = ACTIONS(1366), @@ -51740,6 +51104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1366), [anon_sym___vectorcall] = ACTIONS(1366), [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), [anon_sym_signed] = ACTIONS(1366), [anon_sym_unsigned] = ACTIONS(1366), [anon_sym_long] = ACTIONS(1366), @@ -51808,1673 +51173,1673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [312] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [304] = { + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_identifier] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_COLON] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DASH_GT] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [305] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [306] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [307] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [309] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [310] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [311] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [312] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [313] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_identifier] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DASH_GT] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [315] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [316] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [317] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [318] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [319] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [328] = { + [321] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -53572,791 +52937,693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [322] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [323] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [324] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [325] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [327] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [337] = { + [328] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [329] = { [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), [aux_sym_preproc_def_token1] = ACTIONS(1398), @@ -54454,889 +53721,1478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [330] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [333] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [335] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [336] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [338] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [339] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [340] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [343] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [347] = { + [345] = { + [ts_builtin_sym_end] = ACTIONS(1316), [sym_identifier] = ACTIONS(1314), [aux_sym_preproc_include_token1] = ACTIONS(1314), [aux_sym_preproc_def_token1] = ACTIONS(1314), @@ -55365,7 +55221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1314), [anon_sym___vectorcall] = ACTIONS(1314), [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), [anon_sym_signed] = ACTIONS(1314), [anon_sym_unsigned] = ACTIONS(1314), [anon_sym_long] = ACTIONS(1314), @@ -55434,105 +55289,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [346] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [349] = { + [347] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(1320), [sym_identifier] = ACTIONS(1318), [aux_sym_preproc_include_token1] = ACTIONS(1318), [aux_sym_preproc_def_token1] = ACTIONS(1318), @@ -55561,7 +55515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1318), [anon_sym___vectorcall] = ACTIONS(1318), [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), [anon_sym_signed] = ACTIONS(1318), [anon_sym_unsigned] = ACTIONS(1318), [anon_sym_long] = ACTIONS(1318), @@ -55630,496 +55583,982 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [349] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, [351] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, [352] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [355] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [356] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [355] = { + [358] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [359] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -56216,686 +56655,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [360] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [361] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [362] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [363] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [364] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [365] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [366] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [363] = { + [367] = { [sym_identifier] = ACTIONS(1406), [aux_sym_preproc_include_token1] = ACTIONS(1406), [aux_sym_preproc_def_token1] = ACTIONS(1406), @@ -56945,636 +57384,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(1406), [anon_sym__Atomic] = ACTIONS(1406), [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, [368] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [369] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [370] = { [sym_identifier] = ACTIONS(1468), [aux_sym_preproc_include_token1] = ACTIONS(1468), [aux_sym_preproc_def_token1] = ACTIONS(1468), @@ -57671,205 +57625,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [370] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, [373] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [374] = { [sym_identifier] = ACTIONS(1438), [aux_sym_preproc_include_token1] = ACTIONS(1438), [aux_sym_preproc_def_token1] = ACTIONS(1438), [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), [sym_preproc_directive] = ACTIONS(1438), @@ -57894,7 +58043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1438), [anon_sym___vectorcall] = ACTIONS(1438), [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), [anon_sym_signed] = ACTIONS(1438), [anon_sym_unsigned] = ACTIONS(1438), [anon_sym_long] = ACTIONS(1438), @@ -57962,302 +58110,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, [375] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, [377] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [378] = { [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), [sym_preproc_directive] = ACTIONS(1414), @@ -58282,7 +58431,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1414), [anon_sym___vectorcall] = ACTIONS(1414), [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), [anon_sym_signed] = ACTIONS(1414), [anon_sym_unsigned] = ACTIONS(1414), [anon_sym_long] = ACTIONS(1414), @@ -58350,201 +58498,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [379] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [380] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [380] = { + [381] = { [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), @@ -58641,7 +58789,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [381] = { + [382] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [383] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [385] = { [sym_identifier] = ACTIONS(1468), [aux_sym_preproc_include_token1] = ACTIONS(1468), [aux_sym_preproc_def_token1] = ACTIONS(1468), @@ -58738,298 +59177,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [383] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [386] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [387] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [385] = { + [388] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [389] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -59115,503 +59554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_SQUOTE] = ACTIONS(1494), [anon_sym_u8_SQUOTE] = ACTIONS(1494), [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [386] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [387] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [388] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [389] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [391] = { [sym_identifier] = ACTIONS(1488), [aux_sym_preproc_include_token1] = ACTIONS(1488), [aux_sym_preproc_def_token1] = ACTIONS(1488), @@ -59708,589 +59662,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [393] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [394] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [395] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [391] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [392] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [393] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [398] = { + [394] = { [sym_identifier] = ACTIONS(1480), [aux_sym_preproc_include_token1] = ACTIONS(1480), [aux_sym_preproc_def_token1] = ACTIONS(1480), @@ -60387,7 +60050,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [399] = { + [395] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [396] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [397] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -60484,104 +60341,492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, + [398] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [399] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, [400] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [401] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [402] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [401] = { + [403] = { [sym_identifier] = ACTIONS(1442), [aux_sym_preproc_include_token1] = ACTIONS(1442), [aux_sym_preproc_def_token1] = ACTIONS(1442), @@ -60663,836 +60908,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___asm__] = ACTIONS(1442), [sym_number_literal] = ACTIONS(1444), [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [sym_attribute_declaration] = STATE(420), - [sym_compound_statement] = STATE(203), - [sym_attributed_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_switch_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_goto_statement] = STATE(203), - [sym_seh_try_statement] = STATE(203), - [sym_seh_leave_statement] = STATE(203), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [407] = { - [sym_attribute_declaration] = STATE(436), - [sym_compound_statement] = STATE(299), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(299), - [sym_expression_statement] = STATE(299), - [sym_if_statement] = STATE(299), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(299), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(299), - [sym_for_statement] = STATE(299), - [sym_return_statement] = STATE(299), - [sym_break_statement] = STATE(299), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(299), - [sym_seh_try_statement] = STATE(299), - [sym_seh_leave_statement] = STATE(299), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [404] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(172), - [sym_attributed_statement] = STATE(172), - [sym_labeled_statement] = STATE(172), - [sym_expression_statement] = STATE(172), - [sym_if_statement] = STATE(172), - [sym_switch_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_do_statement] = STATE(172), - [sym_for_statement] = STATE(172), - [sym_return_statement] = STATE(172), - [sym_break_statement] = STATE(172), - [sym_continue_statement] = STATE(172), - [sym_goto_statement] = STATE(172), - [sym_seh_try_statement] = STATE(172), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1596), - [anon_sym___try] = ACTIONS(1599), - [anon_sym___leave] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), + [405] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_attribute_declaration] = STATE(420), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_seh_try_statement] = STATE(306), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(420), + [406] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(2160), + [sym_attributed_statement] = STATE(2160), + [sym_labeled_statement] = STATE(2160), + [sym_expression_statement] = STATE(2160), + [sym_if_statement] = STATE(2160), + [sym_switch_statement] = STATE(2160), + [sym_case_statement] = STATE(2160), + [sym_while_statement] = STATE(2160), + [sym_do_statement] = STATE(2160), + [sym_for_statement] = STATE(2160), + [sym_return_statement] = STATE(2160), + [sym_break_statement] = STATE(2160), + [sym_continue_statement] = STATE(2160), + [sym_goto_statement] = STATE(2160), + [sym_seh_try_statement] = STATE(2160), + [sym_seh_leave_statement] = STATE(2160), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -61501,22 +61168,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(1099), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61546,50 +61213,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(95), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(106), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(108), - [sym_case_statement] = STATE(111), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(129), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(132), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(130), - [sym_goto_statement] = STATE(127), - [sym_seh_try_statement] = STATE(125), - [sym_seh_leave_statement] = STATE(124), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1638), + [407] = { + [sym_attribute_declaration] = STATE(419), + [sym_compound_statement] = STATE(271), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(271), + [sym_expression_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_switch_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_do_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(271), + [sym_break_statement] = STATE(271), + [sym_continue_statement] = STATE(271), + [sym_goto_statement] = STATE(271), + [sym_seh_try_statement] = STATE(271), + [sym_seh_leave_statement] = STATE(271), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61597,22 +61264,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(121), + [anon_sym_SEMI] = ACTIONS(637), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61642,104 +61309,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(237), - [sym_attributed_statement] = STATE(237), - [sym_labeled_statement] = STATE(237), - [sym_expression_statement] = STATE(237), - [sym_if_statement] = STATE(237), - [sym_switch_statement] = STATE(237), - [sym_case_statement] = STATE(237), - [sym_while_statement] = STATE(237), - [sym_do_statement] = STATE(237), - [sym_for_statement] = STATE(237), - [sym_return_statement] = STATE(237), - [sym_break_statement] = STATE(237), - [sym_continue_statement] = STATE(237), - [sym_goto_statement] = STATE(237), - [sym_seh_try_statement] = STATE(237), - [sym_seh_leave_statement] = STATE(237), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [408] = { + [sym_attribute_declaration] = STATE(408), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym_seh_try_statement] = STATE(345), + [sym_seh_leave_statement] = STATE(345), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_switch] = ACTIONS(1571), + [anon_sym_case] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_goto] = ACTIONS(1598), + [anon_sym___try] = ACTIONS(1601), + [anon_sym___leave] = ACTIONS(1604), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_attribute_declaration] = STATE(427), + [409] = { + [sym_attribute_declaration] = STATE(449), [sym_compound_statement] = STATE(503), [sym_attributed_statement] = STATE(503), [sym_labeled_statement] = STATE(503), @@ -61756,32 +61423,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(503), [sym_seh_try_statement] = STATE(503), [sym_seh_leave_statement] = STATE(503), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61792,18 +61459,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -61834,50 +61501,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(97), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_case_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1638), + [410] = { + [sym_attribute_declaration] = STATE(451), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(451), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61885,22 +61552,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(121), + [anon_sym_SEMI] = ACTIONS(193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61930,242 +61597,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(270), - [sym_attributed_statement] = STATE(270), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(270), - [sym_switch_statement] = STATE(270), - [sym_case_statement] = STATE(270), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(270), - [sym_return_statement] = STATE(270), - [sym_break_statement] = STATE(270), - [sym_continue_statement] = STATE(270), - [sym_goto_statement] = STATE(270), - [sym_seh_try_statement] = STATE(270), - [sym_seh_leave_statement] = STATE(270), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym___try] = ACTIONS(1690), - [anon_sym___leave] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - }, - [416] = { - [sym_attribute_declaration] = STATE(420), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [411] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(172), - [sym_attributed_statement] = STATE(172), - [sym_labeled_statement] = STATE(172), - [sym_expression_statement] = STATE(172), - [sym_if_statement] = STATE(172), - [sym_switch_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_do_statement] = STATE(172), - [sym_for_statement] = STATE(172), - [sym_return_statement] = STATE(172), - [sym_break_statement] = STATE(172), - [sym_continue_statement] = STATE(172), - [sym_goto_statement] = STATE(172), - [sym_seh_try_statement] = STATE(172), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1540), + [412] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(316), + [sym_attributed_statement] = STATE(317), + [sym_labeled_statement] = STATE(318), + [sym_expression_statement] = STATE(320), + [sym_if_statement] = STATE(321), + [sym_switch_statement] = STATE(322), + [sym_case_statement] = STATE(325), + [sym_while_statement] = STATE(327), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(330), + [sym_return_statement] = STATE(331), + [sym_break_statement] = STATE(332), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(335), + [sym_seh_try_statement] = STATE(336), + [sym_seh_leave_statement] = STATE(337), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62173,22 +61744,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(345), + [anon_sym_SEMI] = ACTIONS(637), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62218,50 +61789,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(189), - [sym_attributed_statement] = STATE(189), - [sym_labeled_statement] = STATE(189), - [sym_expression_statement] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_switch_statement] = STATE(189), - [sym_case_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_do_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_return_statement] = STATE(189), - [sym_break_statement] = STATE(189), - [sym_continue_statement] = STATE(189), - [sym_goto_statement] = STATE(189), - [sym_seh_try_statement] = STATE(189), - [sym_seh_leave_statement] = STATE(189), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1540), + [413] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym_seh_try_statement] = STATE(282), + [sym_seh_leave_statement] = STATE(282), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62269,22 +61840,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(345), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62314,50 +61885,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(251), - [sym_attributed_statement] = STATE(251), - [sym_labeled_statement] = STATE(251), - [sym_expression_statement] = STATE(251), - [sym_if_statement] = STATE(251), - [sym_switch_statement] = STATE(251), - [sym_case_statement] = STATE(251), - [sym_while_statement] = STATE(251), - [sym_do_statement] = STATE(251), - [sym_for_statement] = STATE(251), - [sym_return_statement] = STATE(251), - [sym_break_statement] = STATE(251), - [sym_continue_statement] = STATE(251), - [sym_goto_statement] = STATE(251), - [sym_seh_try_statement] = STATE(251), - [sym_seh_leave_statement] = STATE(251), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1640), + [414] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym_seh_try_statement] = STATE(312), + [sym_seh_leave_statement] = STATE(312), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62365,22 +61936,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(491), + [anon_sym_SEMI] = ACTIONS(637), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62410,49 +61981,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_attribute_declaration] = STATE(423), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym_seh_try_statement] = STATE(268), - [sym_seh_leave_statement] = STATE(268), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(423), + [415] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -62461,22 +62032,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(1099), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62506,50 +62077,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(2092), - [sym_attributed_statement] = STATE(2092), - [sym_labeled_statement] = STATE(2092), - [sym_expression_statement] = STATE(2092), - [sym_if_statement] = STATE(2092), - [sym_switch_statement] = STATE(2092), - [sym_case_statement] = STATE(2092), - [sym_while_statement] = STATE(2092), - [sym_do_statement] = STATE(2092), - [sym_for_statement] = STATE(2092), - [sym_return_statement] = STATE(2092), - [sym_break_statement] = STATE(2092), - [sym_continue_statement] = STATE(2092), - [sym_goto_statement] = STATE(2092), - [sym_seh_try_statement] = STATE(2092), - [sym_seh_leave_statement] = STATE(2092), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), + [416] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(416), [sym_identifier] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1681), + [anon_sym___try] = ACTIONS(1684), + [anon_sym___leave] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [417] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1690), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62557,22 +62224,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(491), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62602,50 +62269,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(333), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(327), - [sym_expression_statement] = STATE(321), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(298), + [418] = { + [sym_attribute_declaration] = STATE(418), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym_seh_try_statement] = STATE(345), + [sym_seh_leave_statement] = STATE(345), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1571), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_goto] = ACTIONS(1598), + [anon_sym___try] = ACTIONS(1710), + [anon_sym___leave] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym_attribute_declaration] = STATE(419), + [sym_compound_statement] = STATE(271), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(271), + [sym_expression_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_switch_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_do_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(271), + [sym_break_statement] = STATE(271), + [sym_continue_statement] = STATE(271), + [sym_goto_statement] = STATE(271), + [sym_seh_try_statement] = STATE(271), + [sym_seh_leave_statement] = STATE(271), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_goto] = ACTIONS(1752), + [anon_sym___try] = ACTIONS(1755), + [anon_sym___leave] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(296), + [sym_attributed_statement] = STATE(296), + [sym_labeled_statement] = STATE(296), + [sym_expression_statement] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_switch_statement] = STATE(296), + [sym_case_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_do_statement] = STATE(296), [sym_for_statement] = STATE(296), - [sym_return_statement] = STATE(294), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(283), - [sym_seh_try_statement] = STATE(281), - [sym_seh_leave_statement] = STATE(280), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1640), + [sym_return_statement] = STATE(296), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(296), + [sym_goto_statement] = STATE(296), + [sym_seh_try_statement] = STATE(296), + [sym_seh_leave_statement] = STATE(296), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62653,22 +62512,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(491), + [anon_sym_SEMI] = ACTIONS(637), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62698,104 +62557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(423), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym_seh_try_statement] = STATE(268), - [sym_seh_leave_statement] = STATE(268), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1696), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym___try] = ACTIONS(1738), - [anon_sym___leave] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - }, - [424] = { - [sym_attribute_declaration] = STATE(430), + [421] = { + [sym_attribute_declaration] = STATE(416), [sym_compound_statement] = STATE(349), [sym_attributed_statement] = STATE(349), [sym_labeled_statement] = STATE(349), @@ -62812,128 +62575,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(349), [sym_seh_try_statement] = STATE(349), [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_case_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_goto_statement] = STATE(212), - [sym_seh_try_statement] = STATE(212), - [sym_seh_leave_statement] = STATE(212), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1761), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62986,50 +62653,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(146), - [sym_attributed_statement] = STATE(146), - [sym_labeled_statement] = STATE(146), - [sym_expression_statement] = STATE(146), - [sym_if_statement] = STATE(146), - [sym_switch_statement] = STATE(146), - [sym_case_statement] = STATE(146), - [sym_while_statement] = STATE(146), - [sym_do_statement] = STATE(146), - [sym_for_statement] = STATE(146), - [sym_return_statement] = STATE(146), - [sym_break_statement] = STATE(146), - [sym_continue_statement] = STATE(146), - [sym_goto_statement] = STATE(146), - [sym_seh_try_statement] = STATE(146), - [sym_seh_leave_statement] = STATE(146), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1540), + [422] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym_seh_try_statement] = STATE(285), + [sym_seh_leave_statement] = STATE(285), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63037,22 +62704,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(345), + [anon_sym_SEMI] = ACTIONS(637), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63082,50 +62749,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(453), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym_seh_try_statement] = STATE(268), - [sym_seh_leave_statement] = STATE(268), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(453), - [sym_identifier] = ACTIONS(1642), + [423] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(232), + [sym_attributed_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym_seh_try_statement] = STATE(232), + [sym_seh_leave_statement] = STATE(232), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1761), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63135,19 +62802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -63178,146 +62845,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(201), - [sym_attributed_statement] = STATE(201), - [sym_labeled_statement] = STATE(201), - [sym_expression_statement] = STATE(201), - [sym_if_statement] = STATE(201), - [sym_switch_statement] = STATE(201), - [sym_case_statement] = STATE(201), - [sym_while_statement] = STATE(201), - [sym_do_statement] = STATE(201), - [sym_for_statement] = STATE(201), - [sym_return_statement] = STATE(201), - [sym_break_statement] = STATE(201), - [sym_continue_statement] = STATE(201), - [sym_goto_statement] = STATE(201), - [sym_seh_try_statement] = STATE(201), - [sym_seh_leave_statement] = STATE(201), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [429] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(198), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(173), - [sym_for_statement] = STATE(171), - [sym_return_statement] = STATE(167), - [sym_break_statement] = STATE(166), - [sym_continue_statement] = STATE(164), - [sym_goto_statement] = STATE(163), - [sym_seh_try_statement] = STATE(161), - [sym_seh_leave_statement] = STATE(193), - [sym__expression] = STATE(1199), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2083), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1540), + [424] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63325,22 +62896,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(345), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_if] = ACTIONS(355), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_case] = ACTIONS(359), - [anon_sym_default] = ACTIONS(361), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym___try] = ACTIONS(377), - [anon_sym___leave] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63370,50 +62941,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(270), - [sym_attributed_statement] = STATE(270), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(270), - [sym_switch_statement] = STATE(270), - [sym_case_statement] = STATE(270), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(270), - [sym_return_statement] = STATE(270), - [sym_break_statement] = STATE(270), - [sym_continue_statement] = STATE(270), - [sym_goto_statement] = STATE(270), - [sym_seh_try_statement] = STATE(270), - [sym_seh_leave_statement] = STATE(270), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1640), + [425] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym_seh_try_statement] = STATE(282), + [sym_seh_leave_statement] = STATE(282), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1690), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63421,191 +62992,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(2172), - [sym_attributed_statement] = STATE(2172), - [sym_labeled_statement] = STATE(2172), - [sym_expression_statement] = STATE(2172), - [sym_if_statement] = STATE(2172), - [sym_switch_statement] = STATE(2172), - [sym_case_statement] = STATE(2172), - [sym_while_statement] = STATE(2172), - [sym_do_statement] = STATE(2172), - [sym_for_statement] = STATE(2172), - [sym_return_statement] = STATE(2172), - [sym_break_statement] = STATE(2172), - [sym_continue_statement] = STATE(2172), - [sym_goto_statement] = STATE(2172), - [sym_seh_try_statement] = STATE(2172), - [sym_seh_leave_statement] = STATE(2172), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [426] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym_seh_try_statement] = STATE(240), + [sym_seh_leave_statement] = STATE(240), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63616,18 +63091,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -63658,50 +63133,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym_seh_try_statement] = STATE(267), - [sym_seh_leave_statement] = STATE(267), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [427] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(342), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(241), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(237), + [sym_seh_try_statement] = STATE(235), + [sym_seh_leave_statement] = STATE(233), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63712,18 +63187,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -63754,50 +63229,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(113), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym_seh_try_statement] = STATE(113), - [sym_seh_leave_statement] = STATE(113), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1638), + [428] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(210), + [sym_attributed_statement] = STATE(210), + [sym_labeled_statement] = STATE(210), + [sym_expression_statement] = STATE(210), + [sym_if_statement] = STATE(210), + [sym_switch_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_do_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_return_statement] = STATE(210), + [sym_break_statement] = STATE(210), + [sym_continue_statement] = STATE(210), + [sym_goto_statement] = STATE(210), + [sym_seh_try_statement] = STATE(210), + [sym_seh_leave_statement] = STATE(210), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1690), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63805,22 +63280,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(121), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63850,49 +63325,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(420), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym_seh_try_statement] = STATE(267), - [sym_seh_leave_statement] = STATE(267), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(420), + [429] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(2070), + [sym_attributed_statement] = STATE(2070), + [sym_labeled_statement] = STATE(2070), + [sym_expression_statement] = STATE(2070), + [sym_if_statement] = STATE(2070), + [sym_switch_statement] = STATE(2070), + [sym_case_statement] = STATE(2070), + [sym_while_statement] = STATE(2070), + [sym_do_statement] = STATE(2070), + [sym_for_statement] = STATE(2070), + [sym_return_statement] = STATE(2070), + [sym_break_statement] = STATE(2070), + [sym_continue_statement] = STATE(2070), + [sym_goto_statement] = STATE(2070), + [sym_seh_try_statement] = STATE(2070), + [sym_seh_leave_statement] = STATE(2070), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -63901,22 +63376,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(1099), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63946,146 +63421,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(436), - [sym_compound_statement] = STATE(299), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(299), - [sym_expression_statement] = STATE(299), - [sym_if_statement] = STATE(299), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(299), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(299), - [sym_for_statement] = STATE(299), - [sym_return_statement] = STATE(299), - [sym_break_statement] = STATE(299), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(299), - [sym_seh_try_statement] = STATE(299), - [sym_seh_leave_statement] = STATE(299), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym___try] = ACTIONS(1786), - [anon_sym___leave] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), + [430] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_if] = ACTIONS(647), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_case] = ACTIONS(651), + [anon_sym_default] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(667), + [anon_sym___try] = ACTIONS(669), + [anon_sym___leave] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(2137), - [sym_attributed_statement] = STATE(2137), - [sym_labeled_statement] = STATE(2137), - [sym_expression_statement] = STATE(2137), - [sym_if_statement] = STATE(2137), - [sym_switch_statement] = STATE(2137), - [sym_case_statement] = STATE(2137), - [sym_while_statement] = STATE(2137), - [sym_do_statement] = STATE(2137), - [sym_for_statement] = STATE(2137), - [sym_return_statement] = STATE(2137), - [sym_break_statement] = STATE(2137), - [sym_continue_statement] = STATE(2137), - [sym_goto_statement] = STATE(2137), - [sym_seh_try_statement] = STATE(2137), - [sym_seh_leave_statement] = STATE(2137), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [431] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(288), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(284), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(266), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(259), + [sym_goto_statement] = STATE(258), + [sym_seh_try_statement] = STATE(257), + [sym_seh_leave_statement] = STATE(256), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1761), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64095,19 +63570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -64138,50 +63613,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(260), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(243), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(236), - [sym_break_statement] = STATE(235), - [sym_continue_statement] = STATE(234), - [sym_goto_statement] = STATE(254), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(239), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [432] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(326), + [sym_attributed_statement] = STATE(326), + [sym_labeled_statement] = STATE(326), + [sym_expression_statement] = STATE(326), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(326), + [sym_case_statement] = STATE(326), + [sym_while_statement] = STATE(326), + [sym_do_statement] = STATE(326), + [sym_for_statement] = STATE(326), + [sym_return_statement] = STATE(326), + [sym_break_statement] = STATE(326), + [sym_continue_statement] = STATE(326), + [sym_goto_statement] = STATE(326), + [sym_seh_try_statement] = STATE(326), + [sym_seh_leave_statement] = STATE(326), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1761), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64191,19 +63666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -64234,50 +63709,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym_seh_try_statement] = STATE(215), - [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1538), + [433] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(122), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(131), + [sym_while_statement] = STATE(132), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(111), + [sym_seh_try_statement] = STATE(110), + [sym_seh_leave_statement] = STATE(109), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64285,22 +63760,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(545), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64330,50 +63805,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(331), - [sym_attributed_statement] = STATE(331), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_case_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [sym_do_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym_seh_try_statement] = STATE(331), - [sym_seh_leave_statement] = STATE(331), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1538), + [434] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(174), + [sym_attributed_statement] = STATE(179), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(182), + [sym_if_statement] = STATE(183), + [sym_switch_statement] = STATE(189), + [sym_case_statement] = STATE(191), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(173), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(185), + [sym_seh_try_statement] = STATE(176), + [sym_seh_leave_statement] = STATE(172), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64381,22 +63856,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(545), + [anon_sym_SEMI] = ACTIONS(193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64426,8 +63901,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(450), + [435] = { + [sym__expression] = STATE(921), + [sym__expression_not_binary] = STATE(928), + [sym_conditional_expression] = STATE(928), + [sym_assignment_expression] = STATE(928), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(928), + [sym_binary_expression] = STATE(928), + [sym_update_expression] = STATE(928), + [sym_cast_expression] = STATE(928), + [sym_sizeof_expression] = STATE(928), + [sym_alignof_expression] = STATE(928), + [sym_offsetof_expression] = STATE(928), + [sym_generic_expression] = STATE(928), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(928), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(928), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(965), + [sym_char_literal] = STATE(928), + [sym_concatenated_string] = STATE(928), + [sym_string_literal] = STATE(849), + [sym_null] = STATE(928), + [sym_identifier] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1775), + [anon_sym__Generic] = ACTIONS(1777), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym___asm__] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DASH_GT] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1781), + [anon_sym_L_SQUOTE] = ACTIONS(1783), + [anon_sym_u_SQUOTE] = ACTIONS(1783), + [anon_sym_U_SQUOTE] = ACTIONS(1783), + [anon_sym_u8_SQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_L_DQUOTE] = ACTIONS(1785), + [anon_sym_u_DQUOTE] = ACTIONS(1785), + [anon_sym_U_DQUOTE] = ACTIONS(1785), + [anon_sym_u8_DQUOTE] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [anon_sym_NULL] = ACTIONS(1789), + [anon_sym_nullptr] = ACTIONS(1789), + [sym_comment] = ACTIONS(3), + }, + [436] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(198), + [sym_attributed_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [437] = { + [sym_attribute_declaration] = STATE(424), [sym_compound_statement] = STATE(118), [sym_attributed_statement] = STATE(118), [sym_labeled_statement] = STATE(118), @@ -64444,32 +64111,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(118), [sym_seh_try_statement] = STATE(118), [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1638), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64522,50 +64189,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1538), + [438] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(342), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(241), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(237), + [sym_seh_try_statement] = STATE(235), + [sym_seh_leave_statement] = STATE(233), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1690), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64573,22 +64240,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(545), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64618,50 +64285,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_attribute_declaration] = STATE(420), - [sym_compound_statement] = STATE(260), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(243), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(236), - [sym_break_statement] = STATE(235), - [sym_continue_statement] = STATE(234), - [sym_goto_statement] = STATE(254), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(239), - [sym__expression] = STATE(1237), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2079), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(1534), + [439] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64669,22 +64336,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(1099), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64714,50 +64381,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(2145), - [sym_attributed_statement] = STATE(2145), - [sym_labeled_statement] = STATE(2145), - [sym_expression_statement] = STATE(2145), - [sym_if_statement] = STATE(2145), - [sym_switch_statement] = STATE(2145), - [sym_case_statement] = STATE(2145), - [sym_while_statement] = STATE(2145), - [sym_do_statement] = STATE(2145), - [sym_for_statement] = STATE(2145), - [sym_return_statement] = STATE(2145), - [sym_break_statement] = STATE(2145), - [sym_continue_statement] = STATE(2145), - [sym_goto_statement] = STATE(2145), - [sym_seh_try_statement] = STATE(2145), - [sym_seh_leave_statement] = STATE(2145), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [440] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(106), + [sym_attributed_statement] = STATE(106), + [sym_labeled_statement] = STATE(106), + [sym_expression_statement] = STATE(106), + [sym_if_statement] = STATE(106), + [sym_switch_statement] = STATE(106), + [sym_case_statement] = STATE(106), + [sym_while_statement] = STATE(106), + [sym_do_statement] = STATE(106), + [sym_for_statement] = STATE(106), + [sym_return_statement] = STATE(106), + [sym_break_statement] = STATE(106), + [sym_continue_statement] = STATE(106), + [sym_goto_statement] = STATE(106), + [sym_seh_try_statement] = STATE(106), + [sym_seh_leave_statement] = STATE(106), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [441] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(2168), + [sym_attributed_statement] = STATE(2168), + [sym_labeled_statement] = STATE(2168), + [sym_expression_statement] = STATE(2168), + [sym_if_statement] = STATE(2168), + [sym_switch_statement] = STATE(2168), + [sym_case_statement] = STATE(2168), + [sym_while_statement] = STATE(2168), + [sym_do_statement] = STATE(2168), + [sym_for_statement] = STATE(2168), + [sym_return_statement] = STATE(2168), + [sym_break_statement] = STATE(2168), + [sym_continue_statement] = STATE(2168), + [sym_goto_statement] = STATE(2168), + [sym_seh_try_statement] = STATE(2168), + [sym_seh_leave_statement] = STATE(2168), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64768,18 +64531,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -64802,154 +64565,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(2153), - [sym_attributed_statement] = STATE(2153), - [sym_labeled_statement] = STATE(2153), - [sym_expression_statement] = STATE(2153), - [sym_if_statement] = STATE(2153), - [sym_switch_statement] = STATE(2153), - [sym_case_statement] = STATE(2153), - [sym_while_statement] = STATE(2153), - [sym_do_statement] = STATE(2153), - [sym_for_statement] = STATE(2153), - [sym_return_statement] = STATE(2153), - [sym_break_statement] = STATE(2153), - [sym_continue_statement] = STATE(2153), - [sym_goto_statement] = STATE(2153), - [sym_seh_try_statement] = STATE(2153), - [sym_seh_leave_statement] = STATE(2153), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [442] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(149), + [sym_attributed_statement] = STATE(149), + [sym_labeled_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_if_statement] = STATE(149), + [sym_switch_statement] = STATE(149), + [sym_case_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_break_statement] = STATE(149), + [sym_continue_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_seh_try_statement] = STATE(149), + [sym_seh_leave_statement] = STATE(149), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64957,22 +64624,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(491), + [anon_sym_SEMI] = ACTIONS(193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65002,50 +64669,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(314), - [sym_attributed_statement] = STATE(314), - [sym_labeled_statement] = STATE(314), - [sym_expression_statement] = STATE(314), - [sym_if_statement] = STATE(314), - [sym_switch_statement] = STATE(314), - [sym_case_statement] = STATE(314), - [sym_while_statement] = STATE(314), - [sym_do_statement] = STATE(314), - [sym_for_statement] = STATE(314), - [sym_return_statement] = STATE(314), - [sym_break_statement] = STATE(314), - [sym_continue_statement] = STATE(314), - [sym_goto_statement] = STATE(314), - [sym_seh_try_statement] = STATE(314), - [sym_seh_leave_statement] = STATE(314), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1538), + [443] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(184), + [sym_attributed_statement] = STATE(184), + [sym_labeled_statement] = STATE(184), + [sym_expression_statement] = STATE(184), + [sym_if_statement] = STATE(184), + [sym_switch_statement] = STATE(184), + [sym_case_statement] = STATE(184), + [sym_while_statement] = STATE(184), + [sym_do_statement] = STATE(184), + [sym_for_statement] = STATE(184), + [sym_return_statement] = STATE(184), + [sym_break_statement] = STATE(184), + [sym_continue_statement] = STATE(184), + [sym_goto_statement] = STATE(184), + [sym_seh_try_statement] = STATE(184), + [sym_seh_leave_statement] = STATE(184), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65053,22 +64720,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(545), + [anon_sym_SEMI] = ACTIONS(193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65098,146 +64765,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym__expression] = STATE(917), - [sym__expression_not_binary] = STATE(925), - [sym_conditional_expression] = STATE(925), - [sym_assignment_expression] = STATE(925), - [sym_pointer_expression] = STATE(925), - [sym_unary_expression] = STATE(925), - [sym_binary_expression] = STATE(925), - [sym_update_expression] = STATE(925), - [sym_cast_expression] = STATE(925), - [sym_sizeof_expression] = STATE(925), - [sym_alignof_expression] = STATE(925), - [sym_offsetof_expression] = STATE(925), - [sym_generic_expression] = STATE(925), - [sym_subscript_expression] = STATE(925), - [sym_call_expression] = STATE(925), - [sym_gnu_asm_expression] = STATE(925), - [sym_field_expression] = STATE(925), - [sym_compound_literal_expression] = STATE(925), - [sym_parenthesized_expression] = STATE(925), - [sym_initializer_list] = STATE(932), - [sym_char_literal] = STATE(925), - [sym_concatenated_string] = STATE(925), - [sym_string_literal] = STATE(847), - [sym_null] = STATE(925), - [sym_identifier] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1798), - [anon_sym___alignof__] = ACTIONS(1800), - [anon_sym___alignof] = ACTIONS(1800), - [anon_sym__alignof] = ACTIONS(1800), - [anon_sym_alignof] = ACTIONS(1800), - [anon_sym__Alignof] = ACTIONS(1800), - [anon_sym_offsetof] = ACTIONS(1802), - [anon_sym__Generic] = ACTIONS(1804), - [anon_sym_asm] = ACTIONS(1806), - [anon_sym___asm__] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_L_SQUOTE] = ACTIONS(1810), - [anon_sym_u_SQUOTE] = ACTIONS(1810), - [anon_sym_U_SQUOTE] = ACTIONS(1810), - [anon_sym_u8_SQUOTE] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [anon_sym_L_DQUOTE] = ACTIONS(1812), - [anon_sym_u_DQUOTE] = ACTIONS(1812), - [anon_sym_U_DQUOTE] = ACTIONS(1812), - [anon_sym_u8_DQUOTE] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_NULL] = ACTIONS(1816), - [anon_sym_nullptr] = ACTIONS(1816), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1638), + [444] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(124), + [sym_attributed_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_case_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym_seh_try_statement] = STATE(124), + [sym_seh_leave_statement] = STATE(124), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65290,146 +64861,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1857), - [anon_sym___try] = ACTIONS(1860), - [anon_sym___leave] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), + [445] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(342), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(338), - [sym_switch_statement] = STATE(336), - [sym_case_statement] = STATE(335), - [sym_while_statement] = STATE(334), - [sym_do_statement] = STATE(330), - [sym_for_statement] = STATE(329), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(325), - [sym_continue_statement] = STATE(324), - [sym_goto_statement] = STATE(323), - [sym_seh_try_statement] = STATE(322), - [sym_seh_leave_statement] = STATE(317), - [sym__expression] = STATE(1203), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1538), + [446] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(2152), + [sym_attributed_statement] = STATE(2152), + [sym_labeled_statement] = STATE(2152), + [sym_expression_statement] = STATE(2152), + [sym_if_statement] = STATE(2152), + [sym_switch_statement] = STATE(2152), + [sym_case_statement] = STATE(2152), + [sym_while_statement] = STATE(2152), + [sym_do_statement] = STATE(2152), + [sym_for_statement] = STATE(2152), + [sym_return_statement] = STATE(2152), + [sym_break_statement] = STATE(2152), + [sym_continue_statement] = STATE(2152), + [sym_goto_statement] = STATE(2152), + [sym_seh_try_statement] = STATE(2152), + [sym_seh_leave_statement] = STATE(2152), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65437,22 +65008,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(545), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65482,50 +65053,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1239), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2185), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1638), + [447] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym_seh_try_statement] = STATE(204), + [sym_seh_leave_statement] = STATE(204), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1761), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65533,22 +65104,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(121), + [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65578,146 +65149,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_attribute_declaration] = STATE(453), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym_seh_try_statement] = STATE(268), - [sym_seh_leave_statement] = STATE(268), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(453), - [sym_identifier] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym___try] = ACTIONS(1884), - [anon_sym___leave] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(1608), - [anon_sym___alignof__] = ACTIONS(1611), - [anon_sym___alignof] = ACTIONS(1611), - [anon_sym__alignof] = ACTIONS(1611), - [anon_sym_alignof] = ACTIONS(1611), - [anon_sym__Alignof] = ACTIONS(1611), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym___asm__] = ACTIONS(1620), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1626), - [anon_sym_u_SQUOTE] = ACTIONS(1626), - [anon_sym_U_SQUOTE] = ACTIONS(1626), - [anon_sym_u8_SQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [anon_sym_NULL] = ACTIONS(1635), - [anon_sym_nullptr] = ACTIONS(1635), + [448] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2162), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_goto] = ACTIONS(1830), + [anon_sym___try] = ACTIONS(1833), + [anon_sym___leave] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_seh_try_statement] = STATE(306), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [449] = { + [sym_attribute_declaration] = STATE(418), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym_seh_try_statement] = STATE(345), + [sym_seh_leave_statement] = STATE(345), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65728,18 +65299,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(491), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -65770,50 +65341,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1235), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2176), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1642), + [450] = { + [sym_attribute_declaration] = STATE(408), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym_seh_try_statement] = STATE(345), + [sym_seh_leave_statement] = STATE(345), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(1690), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65821,22 +65392,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(491), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65866,199 +65437,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [451] = { + [sym_attribute_declaration] = STATE(451), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(451), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1878), + [anon_sym___try] = ACTIONS(1881), + [anon_sym___leave] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1610), + [anon_sym___alignof__] = ACTIONS(1613), + [anon_sym___alignof] = ACTIONS(1613), + [anon_sym__alignof] = ACTIONS(1613), + [anon_sym_alignof] = ACTIONS(1613), + [anon_sym__Alignof] = ACTIONS(1613), + [anon_sym_offsetof] = ACTIONS(1616), + [anon_sym__Generic] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1622), + [anon_sym___asm__] = ACTIONS(1622), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1628), + [anon_sym_u_SQUOTE] = ACTIONS(1628), + [anon_sym_U_SQUOTE] = ACTIONS(1628), + [anon_sym_u8_SQUOTE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1634), + [sym_false] = ACTIONS(1634), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), [sym_comment] = ACTIONS(3), }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [452] = { + [sym_attribute_declaration] = STATE(449), + [sym_compound_statement] = STATE(2107), + [sym_attributed_statement] = STATE(2107), + [sym_labeled_statement] = STATE(2107), + [sym_expression_statement] = STATE(2107), + [sym_if_statement] = STATE(2107), + [sym_switch_statement] = STATE(2107), + [sym_case_statement] = STATE(2107), + [sym_while_statement] = STATE(2107), + [sym_do_statement] = STATE(2107), + [sym_for_statement] = STATE(2107), + [sym_return_statement] = STATE(2107), + [sym_break_statement] = STATE(2107), + [sym_continue_statement] = STATE(2107), + [sym_goto_statement] = STATE(2107), + [sym_seh_try_statement] = STATE(2107), + [sym_seh_leave_statement] = STATE(2107), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2113), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym_seh_try_statement] = STATE(240), + [sym_seh_leave_statement] = STATE(240), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [458] = { + [454] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(188), + [sym_attributed_statement] = STATE(188), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_case_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym_seh_try_statement] = STATE(188), + [sym_seh_leave_statement] = STATE(188), + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2137), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [455] = { [ts_builtin_sym_end] = ACTIONS(1466), [sym_identifier] = ACTIONS(1464), [aux_sym_preproc_include_token1] = ACTIONS(1464), [aux_sym_preproc_def_token1] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1466), [aux_sym_preproc_if_token1] = ACTIONS(1464), [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), @@ -66083,6 +65851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1464), [anon_sym___vectorcall] = ACTIONS(1464), [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), [anon_sym_signed] = ACTIONS(1464), [anon_sym_unsigned] = ACTIONS(1464), [anon_sym_long] = ACTIONS(1464), @@ -66148,289 +65917,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [456] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [457] = { + [sym__expression] = STATE(985), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_identifier] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1891), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DASH_GT] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [458] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [462] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1412), [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), @@ -66524,7 +66293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [463] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1494), [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), @@ -66618,289 +66387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [sym__expression] = STATE(996), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(807), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_identifier] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1891), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [466] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [467] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1416), [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), @@ -66994,383 +66481,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [462] = { + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1895), + [aux_sym_preproc_include_token1] = ACTIONS(1895), + [aux_sym_preproc_def_token1] = ACTIONS(1895), + [aux_sym_preproc_if_token1] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), + [sym_preproc_directive] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1895), + [anon_sym_typedef] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym___attribute__] = ACTIONS(1895), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1895), + [anon_sym___cdecl] = ACTIONS(1895), + [anon_sym___clrcall] = ACTIONS(1895), + [anon_sym___stdcall] = ACTIONS(1895), + [anon_sym___fastcall] = ACTIONS(1895), + [anon_sym___thiscall] = ACTIONS(1895), + [anon_sym___vectorcall] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1895), + [anon_sym_unsigned] = ACTIONS(1895), + [anon_sym_long] = ACTIONS(1895), + [anon_sym_short] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_auto] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym___inline] = ACTIONS(1895), + [anon_sym___inline__] = ACTIONS(1895), + [anon_sym___forceinline] = ACTIONS(1895), + [anon_sym_thread_local] = ACTIONS(1895), + [anon_sym___thread] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_constexpr] = ACTIONS(1895), + [anon_sym_volatile] = ACTIONS(1895), + [anon_sym_restrict] = ACTIONS(1895), + [anon_sym___restrict__] = ACTIONS(1895), + [anon_sym__Atomic] = ACTIONS(1895), + [anon_sym__Noreturn] = ACTIONS(1895), + [anon_sym_noreturn] = ACTIONS(1895), + [sym_primitive_type] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_switch] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_goto] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_sizeof] = ACTIONS(1895), + [anon_sym___alignof__] = ACTIONS(1895), + [anon_sym___alignof] = ACTIONS(1895), + [anon_sym__alignof] = ACTIONS(1895), + [anon_sym_alignof] = ACTIONS(1895), + [anon_sym__Alignof] = ACTIONS(1895), + [anon_sym_offsetof] = ACTIONS(1895), + [anon_sym__Generic] = ACTIONS(1895), + [anon_sym_asm] = ACTIONS(1895), + [anon_sym___asm__] = ACTIONS(1895), + [sym_number_literal] = ACTIONS(1893), + [anon_sym_L_SQUOTE] = ACTIONS(1893), + [anon_sym_u_SQUOTE] = ACTIONS(1893), + [anon_sym_U_SQUOTE] = ACTIONS(1893), + [anon_sym_u8_SQUOTE] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_L_DQUOTE] = ACTIONS(1893), + [anon_sym_u_DQUOTE] = ACTIONS(1893), + [anon_sym_U_DQUOTE] = ACTIONS(1893), + [anon_sym_u8_DQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym_true] = ACTIONS(1895), + [sym_false] = ACTIONS(1895), + [anon_sym_NULL] = ACTIONS(1895), + [anon_sym_nullptr] = ACTIONS(1895), [sym_comment] = ACTIONS(3), }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [463] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [464] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [465] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [472] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), @@ -67464,195 +66951,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [467] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [468] = { + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [475] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1478), [sym_identifier] = ACTIONS(1476), [aux_sym_preproc_include_token1] = ACTIONS(1476), @@ -67746,7 +67233,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [476] = { + [470] = { + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [aux_sym_preproc_include_token1] = ACTIONS(1899), + [aux_sym_preproc_def_token1] = ACTIONS(1899), + [aux_sym_preproc_if_token1] = ACTIONS(1899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), + [sym_preproc_directive] = ACTIONS(1899), + [anon_sym_LPAREN2] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym___extension__] = ACTIONS(1899), + [anon_sym_typedef] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym___attribute__] = ACTIONS(1899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), + [anon_sym___declspec] = ACTIONS(1899), + [anon_sym___cdecl] = ACTIONS(1899), + [anon_sym___clrcall] = ACTIONS(1899), + [anon_sym___stdcall] = ACTIONS(1899), + [anon_sym___fastcall] = ACTIONS(1899), + [anon_sym___thiscall] = ACTIONS(1899), + [anon_sym___vectorcall] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_signed] = ACTIONS(1899), + [anon_sym_unsigned] = ACTIONS(1899), + [anon_sym_long] = ACTIONS(1899), + [anon_sym_short] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_auto] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym___inline] = ACTIONS(1899), + [anon_sym___inline__] = ACTIONS(1899), + [anon_sym___forceinline] = ACTIONS(1899), + [anon_sym_thread_local] = ACTIONS(1899), + [anon_sym___thread] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1899), + [anon_sym_volatile] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1899), + [anon_sym___restrict__] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1899), + [anon_sym__Noreturn] = ACTIONS(1899), + [anon_sym_noreturn] = ACTIONS(1899), + [sym_primitive_type] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_switch] = ACTIONS(1899), + [anon_sym_case] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_sizeof] = ACTIONS(1899), + [anon_sym___alignof__] = ACTIONS(1899), + [anon_sym___alignof] = ACTIONS(1899), + [anon_sym__alignof] = ACTIONS(1899), + [anon_sym_alignof] = ACTIONS(1899), + [anon_sym__Alignof] = ACTIONS(1899), + [anon_sym_offsetof] = ACTIONS(1899), + [anon_sym__Generic] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym___asm__] = ACTIONS(1899), + [sym_number_literal] = ACTIONS(1897), + [anon_sym_L_SQUOTE] = ACTIONS(1897), + [anon_sym_u_SQUOTE] = ACTIONS(1897), + [anon_sym_U_SQUOTE] = ACTIONS(1897), + [anon_sym_u8_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_L_DQUOTE] = ACTIONS(1897), + [anon_sym_u_DQUOTE] = ACTIONS(1897), + [anon_sym_U_DQUOTE] = ACTIONS(1897), + [anon_sym_u8_DQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [anon_sym_NULL] = ACTIONS(1899), + [anon_sym_nullptr] = ACTIONS(1899), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [473] = { [ts_builtin_sym_end] = ACTIONS(1502), [sym_identifier] = ACTIONS(1500), [aux_sym_preproc_include_token1] = ACTIONS(1500), @@ -67840,511 +67609,793 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym___extension__] = ACTIONS(1895), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_auto] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym___inline] = ACTIONS(1895), - [anon_sym___inline__] = ACTIONS(1895), - [anon_sym___forceinline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym___thread] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym___restrict__] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym__Noreturn] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1895), - [anon_sym___alignof__] = ACTIONS(1895), - [anon_sym___alignof] = ACTIONS(1895), - [anon_sym__alignof] = ACTIONS(1895), - [anon_sym_alignof] = ACTIONS(1895), - [anon_sym__Alignof] = ACTIONS(1895), - [anon_sym_offsetof] = ACTIONS(1895), - [anon_sym__Generic] = ACTIONS(1895), - [anon_sym_asm] = ACTIONS(1895), - [anon_sym___asm__] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [anon_sym_NULL] = ACTIONS(1895), - [anon_sym_nullptr] = ACTIONS(1895), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym___extension__] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_auto] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym___inline] = ACTIONS(1899), - [anon_sym___inline__] = ACTIONS(1899), - [anon_sym___forceinline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym___thread] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym___restrict__] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym__Noreturn] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1899), - [anon_sym___alignof__] = ACTIONS(1899), - [anon_sym___alignof] = ACTIONS(1899), - [anon_sym__alignof] = ACTIONS(1899), - [anon_sym_alignof] = ACTIONS(1899), - [anon_sym__Alignof] = ACTIONS(1899), - [anon_sym_offsetof] = ACTIONS(1899), - [anon_sym__Generic] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym___asm__] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [anon_sym_NULL] = ACTIONS(1899), - [anon_sym_nullptr] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, [482] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2069), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2213), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68400,40 +68451,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [483] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2114), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2141), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68489,40 +68540,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [484] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2182), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1984), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68578,40 +68629,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [485] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1255), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2200), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(1988), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2135), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2004), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68667,40 +68718,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [486] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(1951), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2135), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1942), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68756,40 +68807,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [487] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1255), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2200), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2006), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2212), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68845,40 +68896,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [488] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1255), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2200), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(1945), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2226), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -68934,40 +68985,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [489] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(1969), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1936), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69023,40 +69074,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [490] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2197), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1965), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69112,40 +69163,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [491] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2191), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2178), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69201,40 +69252,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [492] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1255), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2200), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2091), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2136), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69290,40 +69341,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [493] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2163), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1938), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69379,40 +69430,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [494] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2129), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2103), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69468,40 +69519,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [495] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2088), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2135), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(1931), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69557,40 +69608,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [496] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2147), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1230), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2145), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2087), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69646,40 +69697,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [497] = { - [sym_type_qualifier] = STATE(1289), - [sym__type_specifier] = STATE(1311), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__expression] = STATE(1224), - [sym__expression_not_binary] = STATE(807), - [sym_comma_expression] = STATE(2183), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_type_descriptor] = STATE(2058), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__type_definition_type_repeat1] = STATE(1289), - [aux_sym_sized_type_specifier_repeat1] = STATE(1320), + [sym_type_qualifier] = STATE(1290), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(820), + [sym_comma_expression] = STATE(2135), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_type_descriptor] = STATE(2142), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__type_definition_type_repeat1] = STATE(1290), + [aux_sym_sized_type_specifier_repeat1] = STATE(1325), [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -69911,64 +69962,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [500] = { - [sym__expression] = STATE(838), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(899), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(899), - [sym_call_expression] = STATE(899), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(899), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(899), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_identifier] = ACTIONS(1514), + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_identifier] = ACTIONS(1915), [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1514), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1522), [anon_sym_PERCENT] = ACTIONS(1516), [anon_sym_PIPE_PIPE] = ACTIONS(1516), [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1522), [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1522), [anon_sym_EQ_EQ] = ACTIONS(1516), [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1522), [anon_sym_GT_EQ] = ACTIONS(1516), [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1522), [anon_sym_LT_LT] = ACTIONS(1516), [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1516), [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_COLON] = ACTIONS(1516), [anon_sym_QMARK] = ACTIONS(1516), [anon_sym_DASH_DASH] = ACTIONS(1516), [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1919), + [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -69978,7 +70029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1522), [anon_sym_DASH_GT] = ACTIONS(1516), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), @@ -69998,64 +70049,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [501] = { - [sym__expression] = STATE(838), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [sym_identifier] = ACTIONS(1921), + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(901), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(901), + [sym_call_expression] = STATE(901), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(901), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(901), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [sym_identifier] = ACTIONS(1522), [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1522), [anon_sym_PERCENT] = ACTIONS(1516), [anon_sym_PIPE_PIPE] = ACTIONS(1516), [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1522), [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1522), [anon_sym_EQ_EQ] = ACTIONS(1516), [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1522), [anon_sym_GT_EQ] = ACTIONS(1516), [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1522), [anon_sym_LT_LT] = ACTIONS(1516), [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_COLON] = ACTIONS(1516), [anon_sym_QMARK] = ACTIONS(1516), [anon_sym_DASH_DASH] = ACTIONS(1516), [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(1921), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -70065,7 +70116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1522), [anon_sym_DASH_GT] = ACTIONS(1516), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), @@ -70085,31 +70136,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [502] = { - [sym__expression] = STATE(917), - [sym__expression_not_binary] = STATE(925), - [sym_conditional_expression] = STATE(925), - [sym_assignment_expression] = STATE(925), - [sym_pointer_expression] = STATE(950), - [sym_unary_expression] = STATE(925), - [sym_binary_expression] = STATE(925), - [sym_update_expression] = STATE(925), - [sym_cast_expression] = STATE(925), - [sym_sizeof_expression] = STATE(925), - [sym_alignof_expression] = STATE(925), - [sym_offsetof_expression] = STATE(925), - [sym_generic_expression] = STATE(925), - [sym_subscript_expression] = STATE(950), - [sym_call_expression] = STATE(950), - [sym_gnu_asm_expression] = STATE(925), - [sym_field_expression] = STATE(950), - [sym_compound_literal_expression] = STATE(925), - [sym_parenthesized_expression] = STATE(950), - [sym_initializer_list] = STATE(932), - [sym_char_literal] = STATE(925), - [sym_concatenated_string] = STATE(925), - [sym_string_literal] = STATE(847), - [sym_null] = STATE(925), - [sym_identifier] = ACTIONS(1514), + [sym__expression] = STATE(921), + [sym__expression_not_binary] = STATE(928), + [sym_conditional_expression] = STATE(928), + [sym_assignment_expression] = STATE(928), + [sym_pointer_expression] = STATE(952), + [sym_unary_expression] = STATE(928), + [sym_binary_expression] = STATE(928), + [sym_update_expression] = STATE(928), + [sym_cast_expression] = STATE(928), + [sym_sizeof_expression] = STATE(928), + [sym_alignof_expression] = STATE(928), + [sym_offsetof_expression] = STATE(928), + [sym_generic_expression] = STATE(928), + [sym_subscript_expression] = STATE(952), + [sym_call_expression] = STATE(952), + [sym_gnu_asm_expression] = STATE(928), + [sym_field_expression] = STATE(952), + [sym_compound_literal_expression] = STATE(928), + [sym_parenthesized_expression] = STATE(952), + [sym_initializer_list] = STATE(965), + [sym_char_literal] = STATE(928), + [sym_concatenated_string] = STATE(928), + [sym_string_literal] = STATE(849), + [sym_null] = STATE(928), + [sym_identifier] = ACTIONS(1522), [anon_sym_COMMA] = ACTIONS(1516), [aux_sym_preproc_if_token2] = ACTIONS(1516), [aux_sym_preproc_else_token1] = ACTIONS(1516), @@ -70117,60 +70168,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1516), [anon_sym_BANG] = ACTIONS(1923), [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1522), [anon_sym_PERCENT] = ACTIONS(1516), [anon_sym_PIPE_PIPE] = ACTIONS(1516), [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1522), [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1522), [anon_sym_EQ_EQ] = ACTIONS(1516), [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1522), [anon_sym_GT_EQ] = ACTIONS(1516), [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1522), [anon_sym_LT_LT] = ACTIONS(1516), [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1769), [anon_sym_LBRACK] = ACTIONS(1516), [anon_sym_QMARK] = ACTIONS(1516), [anon_sym_DASH_DASH] = ACTIONS(1516), [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_sizeof] = ACTIONS(1927), - [anon_sym___alignof__] = ACTIONS(1800), - [anon_sym___alignof] = ACTIONS(1800), - [anon_sym__alignof] = ACTIONS(1800), - [anon_sym_alignof] = ACTIONS(1800), - [anon_sym__Alignof] = ACTIONS(1800), - [anon_sym_offsetof] = ACTIONS(1802), - [anon_sym__Generic] = ACTIONS(1804), - [anon_sym_asm] = ACTIONS(1806), - [anon_sym___asm__] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1775), + [anon_sym__Generic] = ACTIONS(1777), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym___asm__] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1522), [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_L_SQUOTE] = ACTIONS(1810), - [anon_sym_u_SQUOTE] = ACTIONS(1810), - [anon_sym_U_SQUOTE] = ACTIONS(1810), - [anon_sym_u8_SQUOTE] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [anon_sym_L_DQUOTE] = ACTIONS(1812), - [anon_sym_u_DQUOTE] = ACTIONS(1812), - [anon_sym_U_DQUOTE] = ACTIONS(1812), - [anon_sym_u8_DQUOTE] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_NULL] = ACTIONS(1816), - [anon_sym_nullptr] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1781), + [anon_sym_L_SQUOTE] = ACTIONS(1783), + [anon_sym_u_SQUOTE] = ACTIONS(1783), + [anon_sym_U_SQUOTE] = ACTIONS(1783), + [anon_sym_u8_SQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_L_DQUOTE] = ACTIONS(1785), + [anon_sym_u_DQUOTE] = ACTIONS(1785), + [anon_sym_U_DQUOTE] = ACTIONS(1785), + [anon_sym_u8_DQUOTE] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [anon_sym_NULL] = ACTIONS(1789), + [anon_sym_nullptr] = ACTIONS(1789), [sym_comment] = ACTIONS(3), }, [503] = { - [sym_else_clause] = STATE(255), + [sym_else_clause] = STATE(295), [sym_identifier] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -70254,54 +70305,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [504] = { - [sym__expression] = STATE(996), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_initializer_list] = STATE(828), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), + [sym__expression] = STATE(985), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_initializer_list] = STATE(809), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), [sym_identifier] = ACTIONS(1931), [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), [anon_sym_LPAREN2] = ACTIONS(1516), [anon_sym_BANG] = ACTIONS(1933), [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1522), [anon_sym_PERCENT] = ACTIONS(1516), [anon_sym_PIPE_PIPE] = ACTIONS(1516), [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1522), [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1522), [anon_sym_EQ_EQ] = ACTIONS(1516), [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1522), [anon_sym_GT_EQ] = ACTIONS(1516), [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1522), [anon_sym_LT_LT] = ACTIONS(1516), [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_LBRACK] = ACTIONS(1516), [anon_sym_RBRACK] = ACTIONS(1516), [anon_sym_QMARK] = ACTIONS(1516), @@ -70317,7 +70368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1522), [anon_sym_DASH_GT] = ACTIONS(1516), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), @@ -70420,8 +70471,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [506] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70443,19 +70494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1964), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -70473,18 +70524,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_COLON] = ACTIONS(1973), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -70497,8 +70548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [507] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70520,19 +70571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1964), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -70550,18 +70601,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1974), + [anon_sym_COLON] = ACTIONS(1977), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -70574,8 +70625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [508] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70597,19 +70648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1953), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -70627,18 +70678,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_COLON] = ACTIONS(1979), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -70651,8 +70702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [509] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70674,19 +70725,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1953), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -70704,18 +70755,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1977), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -70728,8 +70779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [510] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70751,19 +70802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1953), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -70783,16 +70834,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(1951), [anon_sym_COLON] = ACTIONS(1981), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -70805,162 +70856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [511] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [513] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -70986,15 +70883,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -71012,95 +70909,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [514] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1981), + [anon_sym_COLON] = ACTIONS(1973), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -71112,9 +70932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [515] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [512] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -71140,15 +70960,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -71168,16 +70988,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(1951), [anon_sym_COLON] = ACTIONS(1983), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -71189,9 +71009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [516] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [513] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), @@ -71217,15 +71037,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -71243,17 +71063,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1951), [anon_sym__Noreturn] = ACTIONS(1951), [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1985), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -71265,10 +71086,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym_string_literal] = STATE(771), - [aux_sym_sized_type_specifier_repeat1] = STATE(1092), + [514] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [515] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), [anon_sym_LPAREN2] = ACTIONS(1955), [anon_sym_DASH] = ACTIONS(1959), [anon_sym_PLUS] = ACTIONS(1959), @@ -71288,19 +71187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1959), [anon_sym_LT_LT] = ACTIONS(1959), [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1964), [anon_sym___extension__] = ACTIONS(1951), [anon_sym_extern] = ACTIONS(1951), [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), [anon_sym___declspec] = ACTIONS(1951), [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1971), [anon_sym_static] = ACTIONS(1951), [anon_sym_auto] = ACTIONS(1951), [anon_sym_register] = ACTIONS(1951), @@ -71320,16 +71219,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(1951), [anon_sym_COLON] = ACTIONS(1985), [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(1951), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [sym_string_literal] = STATE(774), + [aux_sym_sized_type_specifier_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), [anon_sym_DASH_DASH] = ACTIONS(1953), [anon_sym_PLUS_PLUS] = ACTIONS(1953), [anon_sym_DOT] = ACTIONS(1953), @@ -71342,31 +71393,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [518] = { - [sym_type_qualifier] = STATE(848), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(848), + [sym_type_qualifier] = STATE(519), + [sym__expression] = STATE(1297), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(519), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71415,31 +71466,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [519] = { - [sym_type_qualifier] = STATE(520), - [sym__expression] = STATE(1272), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(520), + [sym_type_qualifier] = STATE(852), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(852), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71488,31 +71539,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [520] = { - [sym_type_qualifier] = STATE(848), - [sym__expression] = STATE(1285), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(848), + [sym_type_qualifier] = STATE(852), + [sym__expression] = STATE(1278), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(852), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71561,31 +71612,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [521] = { - [sym_type_qualifier] = STATE(523), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(523), + [sym_type_qualifier] = STATE(852), + [sym__expression] = STATE(1293), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(852), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71634,31 +71685,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [522] = { - [sym_type_qualifier] = STATE(526), - [sym__expression] = STATE(1278), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(526), + [sym_type_qualifier] = STATE(521), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(521), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71707,31 +71758,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [523] = { - [sym_type_qualifier] = STATE(848), - [sym__expression] = STATE(1292), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(848), + [sym_type_qualifier] = STATE(525), + [sym__expression] = STATE(1264), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(525), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71780,31 +71831,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [524] = { - [sym_type_qualifier] = STATE(518), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(518), + [sym_type_qualifier] = STATE(520), + [sym__expression] = STATE(1275), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(520), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71853,31 +71904,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [525] = { - [sym_type_qualifier] = STATE(848), - [sym__expression] = STATE(1297), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(848), + [sym_type_qualifier] = STATE(852), + [sym__expression] = STATE(1288), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(852), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71926,31 +71977,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [526] = { - [sym_type_qualifier] = STATE(848), - [sym__expression] = STATE(1287), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(848), + [sym_type_qualifier] = STATE(527), + [sym__expression] = STATE(1283), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(527), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -71999,31 +72050,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [527] = { - [sym_type_qualifier] = STATE(525), - [sym__expression] = STATE(1293), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(1017), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(1017), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym__type_definition_type_repeat1] = STATE(525), + [sym_type_qualifier] = STATE(852), + [sym__expression] = STATE(1266), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(1020), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym__type_definition_type_repeat1] = STATE(852), [sym_identifier] = ACTIONS(1931), [anon_sym_LPAREN2] = ACTIONS(1987), [anon_sym_BANG] = ACTIONS(1935), @@ -72072,35 +72123,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [528] = { - [sym__expression] = STATE(1192), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1800), - [sym_initializer_pair] = STATE(1800), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1200), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1802), + [sym_initializer_pair] = STATE(1802), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_COMMA] = ACTIONS(2037), [anon_sym_LPAREN2] = ACTIONS(19), @@ -72110,7 +72161,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2039), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72144,35 +72195,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [529] = { - [sym__expression] = STATE(1194), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1797), - [sym_initializer_pair] = STATE(1797), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1191), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1814), + [sym_initializer_pair] = STATE(1814), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_COMMA] = ACTIONS(2045), [anon_sym_LPAREN2] = ACTIONS(19), @@ -72182,7 +72233,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2047), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72216,35 +72267,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [530] = { - [sym__expression] = STATE(1260), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1904), - [sym_initializer_pair] = STATE(1904), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1244), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1881), + [sym_initializer_pair] = STATE(1881), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -72253,7 +72304,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2049), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72287,35 +72338,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [531] = { - [sym__expression] = STATE(1260), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1904), - [sym_initializer_pair] = STATE(1904), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1244), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1881), + [sym_initializer_pair] = STATE(1881), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -72324,7 +72375,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72358,35 +72409,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [532] = { - [sym__expression] = STATE(1260), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1904), - [sym_initializer_pair] = STATE(1904), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1244), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1881), + [sym_initializer_pair] = STATE(1881), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -72395,7 +72446,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72429,35 +72480,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [533] = { - [sym__expression] = STATE(1260), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1904), - [sym_initializer_pair] = STATE(1904), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), + [sym__expression] = STATE(1244), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1881), + [sym_initializer_pair] = STATE(1881), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), [sym_identifier] = ACTIONS(2035), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -72466,7 +72517,7 @@ static const uint16_t ts_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(1522), + [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(2055), [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72500,43 +72551,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [534] = { - [sym_preproc_def] = STATE(536), - [sym_preproc_function_def] = STATE(536), - [sym_preproc_call] = STATE(536), - [sym_preproc_elifdef] = STATE(2167), - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(2167), - [sym_preproc_elif_in_field_declaration_list] = STATE(2167), - [sym__declaration_modifiers] = STATE(863), + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym_preproc_else_in_field_declaration_list] = STATE(2124), + [sym_preproc_elif_in_field_declaration_list] = STATE(2124), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2124), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1469), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [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), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [sym_preproc_def] = STATE(542), + [sym_preproc_function_def] = STATE(542), + [sym_preproc_call] = STATE(542), + [sym_preproc_if_in_field_declaration_list] = STATE(542), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(542), + [sym_preproc_else_in_field_declaration_list] = STATE(2021), + [sym_preproc_elif_in_field_declaration_list] = STATE(2021), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2021), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1469), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), + [sym__type_specifier] = STATE(1074), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(542), + [sym_field_declaration] = STATE(542), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [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), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [sym_preproc_def] = STATE(537), + [sym_preproc_function_def] = STATE(537), + [sym_preproc_call] = STATE(537), + [sym_preproc_if_in_field_declaration_list] = STATE(537), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(537), + [sym_preproc_else_in_field_declaration_list] = STATE(2064), + [sym_preproc_elif_in_field_declaration_list] = STATE(2064), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2064), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(537), + [sym_field_declaration] = STATE(537), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(537), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2063), + [aux_sym_preproc_if_token2] = ACTIONS(2077), [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72569,44 +72760,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_preproc_def] = STATE(539), - [sym_preproc_function_def] = STATE(539), - [sym_preproc_call] = STATE(539), - [sym_preproc_elifdef] = STATE(2037), - [sym_preproc_if_in_field_declaration_list] = STATE(539), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(539), - [sym_preproc_else_in_field_declaration_list] = STATE(2037), - [sym_preproc_elif_in_field_declaration_list] = STATE(2037), - [sym__declaration_modifiers] = STATE(863), + [537] = { + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym_preproc_else_in_field_declaration_list] = STATE(2049), + [sym_preproc_elif_in_field_declaration_list] = STATE(2049), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2049), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(539), - [sym_field_declaration] = STATE(539), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(539), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2079), [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72639,44 +72830,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_elifdef] = STATE(2181), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2181), - [sym_preproc_elif_in_field_declaration_list] = STATE(2181), - [sym__declaration_modifiers] = STATE(863), + [538] = { + [sym__expression] = STATE(1244), + [sym__expression_not_binary] = STATE(820), + [sym_conditional_expression] = STATE(820), + [sym_assignment_expression] = STATE(820), + [sym_pointer_expression] = STATE(910), + [sym_unary_expression] = STATE(820), + [sym_binary_expression] = STATE(820), + [sym_update_expression] = STATE(820), + [sym_cast_expression] = STATE(820), + [sym_sizeof_expression] = STATE(820), + [sym_alignof_expression] = STATE(820), + [sym_offsetof_expression] = STATE(820), + [sym_generic_expression] = STATE(820), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_gnu_asm_expression] = STATE(820), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(820), + [sym_parenthesized_expression] = STATE(910), + [sym_initializer_list] = STATE(1881), + [sym_initializer_pair] = STATE(1881), + [sym_subscript_designator] = STATE(1608), + [sym_subscript_range_designator] = STATE(1608), + [sym_field_designator] = STATE(1608), + [sym_char_literal] = STATE(820), + [sym_concatenated_string] = STATE(820), + [sym_string_literal] = STATE(776), + [sym_null] = STATE(820), + [aux_sym_initializer_pair_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1524), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(2043), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [sym_preproc_def] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_preproc_call] = STATE(543), + [sym_preproc_if_in_field_declaration_list] = STATE(543), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(543), + [sym_preproc_else_in_field_declaration_list] = STATE(2203), + [sym_preproc_elif_in_field_declaration_list] = STATE(2203), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2203), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(543), + [sym_field_declaration] = STATE(543), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(543), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2075), + [aux_sym_preproc_if_token2] = ACTIONS(2081), [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72709,53 +72970,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_elifdef] = STATE(2108), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2108), - [sym_preproc_elif_in_field_declaration_list] = STATE(2108), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [540] = { + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_based_modifier] = STATE(2001), + [sym__declarator] = STATE(1614), + [sym__abstract_declarator] = STATE(1704), + [sym_parenthesized_declarator] = STATE(1537), + [sym_abstract_parenthesized_declarator] = STATE(1650), + [sym_attributed_declarator] = STATE(1537), + [sym_pointer_declarator] = STATE(1537), + [sym_abstract_pointer_declarator] = STATE(1650), + [sym_function_declarator] = STATE(1537), + [sym_abstract_function_declarator] = STATE(1650), + [sym_array_declarator] = STATE(1537), + [sym_abstract_array_declarator] = STATE(1650), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym_variadic_parameter] = STATE(1743), + [sym_parameter_list] = STATE(1653), + [sym_parameter_declaration] = STATE(1743), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LPAREN2] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2091), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(2093), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(2095), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -72779,53 +73040,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1393), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_ms_based_modifier] = STATE(2164), - [sym__declarator] = STATE(1606), - [sym__abstract_declarator] = STATE(1731), - [sym_parenthesized_declarator] = STATE(1545), - [sym_abstract_parenthesized_declarator] = STATE(1641), - [sym_attributed_declarator] = STATE(1545), - [sym_pointer_declarator] = STATE(1545), - [sym_abstract_pointer_declarator] = STATE(1641), - [sym_function_declarator] = STATE(1545), - [sym_abstract_function_declarator] = STATE(1641), - [sym_array_declarator] = STATE(1545), - [sym_abstract_array_declarator] = STATE(1641), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [541] = { + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [sym_preproc_else_in_field_declaration_list] = STATE(2053), + [sym_preproc_elif_in_field_declaration_list] = STATE(2053), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2053), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1469), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym_variadic_parameter] = STATE(1760), - [sym_parameter_list] = STATE(1656), - [sym_parameter_declaration] = STATE(1760), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_LPAREN2] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2087), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2089), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2091), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -72849,44 +73110,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_elifdef] = STATE(1972), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(1972), - [sym_preproc_elif_in_field_declaration_list] = STATE(1972), - [sym__declaration_modifiers] = STATE(863), + [542] = { + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym_preproc_else_in_field_declaration_list] = STATE(2067), + [sym_preproc_elif_in_field_declaration_list] = STATE(2067), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2067), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2093), + [aux_sym_preproc_if_token2] = ACTIONS(2099), [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72919,114 +73180,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym__expression] = STATE(1260), - [sym__expression_not_binary] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(919), - [sym_unary_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_update_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_alignof_expression] = STATE(807), - [sym_offsetof_expression] = STATE(807), - [sym_generic_expression] = STATE(807), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_gnu_asm_expression] = STATE(807), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(919), - [sym_initializer_list] = STATE(1904), - [sym_initializer_pair] = STATE(1904), - [sym_subscript_designator] = STATE(1601), - [sym_subscript_range_designator] = STATE(1601), - [sym_field_designator] = STATE(1601), - [sym_char_literal] = STATE(807), - [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(773), - [sym_null] = STATE(807), - [aux_sym_initializer_pair_repeat1] = STATE(1601), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1522), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [541] = { - [sym_preproc_def] = STATE(543), - [sym_preproc_function_def] = STATE(543), - [sym_preproc_call] = STATE(543), - [sym_preproc_elifdef] = STATE(2032), - [sym_preproc_if_in_field_declaration_list] = STATE(543), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(543), - [sym_preproc_else_in_field_declaration_list] = STATE(2032), - [sym_preproc_elif_in_field_declaration_list] = STATE(2032), - [sym__declaration_modifiers] = STATE(863), + [543] = { + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym_preproc_else_in_field_declaration_list] = STATE(2189), + [sym_preproc_elif_in_field_declaration_list] = STATE(2189), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2189), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(543), - [sym_field_declaration] = STATE(543), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(543), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2095), + [aux_sym_preproc_if_token2] = ACTIONS(2101), [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73059,44 +73250,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_preproc_def] = STATE(537), - [sym_preproc_function_def] = STATE(537), - [sym_preproc_call] = STATE(537), - [sym_preproc_elifdef] = STATE(2119), - [sym_preproc_if_in_field_declaration_list] = STATE(537), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(537), - [sym_preproc_else_in_field_declaration_list] = STATE(2119), - [sym_preproc_elif_in_field_declaration_list] = STATE(2119), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [544] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2186), + [sym_preproc_elif_in_field_declaration_list] = STATE(2186), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(537), - [sym_field_declaration] = STATE(537), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(537), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73129,44 +73317,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_elifdef] = STATE(2023), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2023), - [sym_preproc_elif_in_field_declaration_list] = STATE(2023), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [545] = { + [sym_preproc_def] = STATE(546), + [sym_preproc_function_def] = STATE(546), + [sym_preproc_call] = STATE(546), + [sym_preproc_if_in_field_declaration_list] = STATE(546), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(546), + [sym_preproc_else_in_field_declaration_list] = STATE(2159), + [sym_preproc_elif_in_field_declaration_list] = STATE(2159), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(546), + [sym_field_declaration] = STATE(546), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(546), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73199,41 +73384,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2186), - [sym_preproc_elif_in_field_declaration_list] = STATE(2186), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [546] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2182), + [sym_preproc_elif_in_field_declaration_list] = STATE(2182), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73266,41 +73451,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2020), - [sym_preproc_elif_in_field_declaration_list] = STATE(2020), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [547] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(2100), + [sym_preproc_elif_in_field_declaration_list] = STATE(2100), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73333,41 +73518,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_field_declaration_list] = STATE(544), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), - [sym_preproc_else_in_field_declaration_list] = STATE(2180), - [sym_preproc_elif_in_field_declaration_list] = STATE(2180), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [548] = { + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2181), + [sym_preproc_elif_in_field_declaration_list] = STATE(2181), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(544), - [sym_field_declaration] = STATE(544), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73400,41 +73585,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2002), - [sym_preproc_elif_in_field_declaration_list] = STATE(2002), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [549] = { + [sym_preproc_def] = STATE(550), + [sym_preproc_function_def] = STATE(550), + [sym_preproc_call] = STATE(550), + [sym_preproc_if_in_field_declaration_list] = STATE(550), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), + [sym_preproc_else_in_field_declaration_list] = STATE(2054), + [sym_preproc_elif_in_field_declaration_list] = STATE(2054), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(550), + [sym_field_declaration] = STATE(550), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73467,41 +73652,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_preproc_def] = STATE(545), - [sym_preproc_function_def] = STATE(545), - [sym_preproc_call] = STATE(545), - [sym_preproc_if_in_field_declaration_list] = STATE(545), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(545), - [sym_preproc_else_in_field_declaration_list] = STATE(2030), - [sym_preproc_elif_in_field_declaration_list] = STATE(2030), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [550] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2047), + [sym_preproc_elif_in_field_declaration_list] = STATE(2047), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(545), - [sym_field_declaration] = STATE(545), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(545), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73534,41 +73719,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(1937), - [sym_preproc_elif_in_field_declaration_list] = STATE(1937), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [551] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2077), + [sym_preproc_elif_in_field_declaration_list] = STATE(2077), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73601,108 +73786,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym__declaration_modifiers] = STATE(863), + [552] = { + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym__declaration_modifiers] = STATE(867), [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2121), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2127), - [aux_sym_preproc_if_token2] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), - [aux_sym_preproc_else_token1] = ACTIONS(2130), - [aux_sym_preproc_elif_token1] = ACTIONS(2130), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2130), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2130), - [sym_preproc_directive] = ACTIONS(2135), - [anon_sym___extension__] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2141), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2147), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2153), - [anon_sym_unsigned] = ACTIONS(2153), - [anon_sym_long] = ACTIONS(2153), - [anon_sym_short] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_auto] = ACTIONS(2141), - [anon_sym_register] = ACTIONS(2141), - [anon_sym_inline] = ACTIONS(2141), - [anon_sym___inline] = ACTIONS(2141), - [anon_sym___inline__] = ACTIONS(2141), - [anon_sym___forceinline] = ACTIONS(2141), - [anon_sym_thread_local] = ACTIONS(2141), - [anon_sym___thread] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_constexpr] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym_restrict] = ACTIONS(2138), - [anon_sym___restrict__] = ACTIONS(2138), - [anon_sym__Atomic] = ACTIONS(2138), - [anon_sym__Noreturn] = ACTIONS(2138), - [anon_sym_noreturn] = ACTIONS(2138), - [sym_primitive_type] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2165), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2130), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym___attribute__] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2153), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2159), + [anon_sym_unsigned] = ACTIONS(2159), + [anon_sym_long] = ACTIONS(2159), + [anon_sym_short] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_auto] = ACTIONS(2147), + [anon_sym_register] = ACTIONS(2147), + [anon_sym_inline] = ACTIONS(2147), + [anon_sym___inline] = ACTIONS(2147), + [anon_sym___inline__] = ACTIONS(2147), + [anon_sym___forceinline] = ACTIONS(2147), + [anon_sym_thread_local] = ACTIONS(2147), + [anon_sym___thread] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_constexpr] = ACTIONS(2144), + [anon_sym_volatile] = ACTIONS(2144), + [anon_sym_restrict] = ACTIONS(2144), + [anon_sym___restrict__] = ACTIONS(2144), + [anon_sym__Atomic] = ACTIONS(2144), + [anon_sym__Noreturn] = ACTIONS(2144), + [anon_sym_noreturn] = ACTIONS(2144), + [sym_primitive_type] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym_preproc_else_in_field_declaration_list] = STATE(1981), - [sym_preproc_elif_in_field_declaration_list] = STATE(1981), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [553] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2215), + [sym_preproc_elif_in_field_declaration_list] = STATE(2215), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73735,41 +73920,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_field_declaration_list] = STATE(549), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(549), - [sym_preproc_else_in_field_declaration_list] = STATE(1973), - [sym_preproc_elif_in_field_declaration_list] = STATE(1973), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [554] = { + [sym_preproc_def] = STATE(544), + [sym_preproc_function_def] = STATE(544), + [sym_preproc_call] = STATE(544), + [sym_preproc_if_in_field_declaration_list] = STATE(544), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), + [sym_preproc_else_in_field_declaration_list] = STATE(2198), + [sym_preproc_elif_in_field_declaration_list] = STATE(2198), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(549), - [sym_field_declaration] = STATE(549), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(549), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(544), + [sym_field_declaration] = STATE(544), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73802,41 +73987,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_preproc_def] = STATE(554), - [sym_preproc_function_def] = STATE(554), - [sym_preproc_call] = STATE(554), - [sym_preproc_if_in_field_declaration_list] = STATE(554), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(554), - [sym_preproc_else_in_field_declaration_list] = STATE(2115), - [sym_preproc_elif_in_field_declaration_list] = STATE(2115), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [555] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2158), + [sym_preproc_elif_in_field_declaration_list] = STATE(2158), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73869,41 +74054,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [554] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2107), - [sym_preproc_elif_in_field_declaration_list] = STATE(2107), - [sym__declaration_modifiers] = STATE(863), - [sym__declaration_specifiers] = STATE(1462), - [sym_attribute_specifier] = STATE(863), - [sym_attribute_declaration] = STATE(863), - [sym_ms_declspec_modifier] = STATE(863), - [sym_storage_class_specifier] = STATE(863), - [sym_type_qualifier] = STATE(863), + [556] = { + [sym_preproc_def] = STATE(551), + [sym_preproc_function_def] = STATE(551), + [sym_preproc_call] = STATE(551), + [sym_preproc_if_in_field_declaration_list] = STATE(551), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), + [sym_preproc_else_in_field_declaration_list] = STATE(2061), + [sym_preproc_elif_in_field_declaration_list] = STATE(2061), + [sym__declaration_modifiers] = STATE(867), + [sym__declaration_specifiers] = STATE(1466), + [sym_attribute_specifier] = STATE(867), + [sym_attribute_declaration] = STATE(867), + [sym_ms_declspec_modifier] = STATE(867), + [sym_storage_class_specifier] = STATE(867), + [sym_type_qualifier] = STATE(867), [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1099), - [sym_enum_specifier] = STATE(1099), - [sym_struct_specifier] = STATE(1099), - [sym_union_specifier] = STATE(1099), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1099), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [aux_sym_sized_type_specifier_repeat1] = STATE(1109), + [sym_sized_type_specifier] = STATE(1115), + [sym_enum_specifier] = STATE(1115), + [sym_struct_specifier] = STATE(1115), + [sym_union_specifier] = STATE(1115), + [sym__field_declaration_list_item] = STATE(551), + [sym_field_declaration] = STATE(551), + [sym_macro_type_specifier] = STATE(1115), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), + [aux_sym__declaration_specifiers_repeat1] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), [aux_sym_preproc_else_token1] = ACTIONS(2067), [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2109), + [sym_preproc_directive] = ACTIONS(2111), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73954,17 +74139,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(2182), 1, + anon_sym_RPAREN, + ACTIONS(2184), 1, + anon_sym___extension__, + STATE(776), 1, + sym_string_literal, + STATE(1195), 1, + sym__expression, + STATE(1816), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [114] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(2186), 1, + anon_sym_RPAREN, + ACTIONS(2188), 1, + anon_sym___extension__, + STATE(776), 1, + sym_string_literal, + STATE(1192), 1, + sym__expression, + STATE(1759), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [228] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2150), 1, + anon_sym___attribute__, + ACTIONS(2153), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2156), 1, + anon_sym___declspec, + ACTIONS(2162), 1, + sym_primitive_type, + ACTIONS(2165), 1, + anon_sym_enum, + ACTIONS(2168), 1, + anon_sym_struct, + ACTIONS(2171), 1, + anon_sym_union, + ACTIONS(2190), 1, + aux_sym_preproc_def_token1, + ACTIONS(2193), 1, + aux_sym_preproc_if_token1, + ACTIONS(2199), 1, + sym_preproc_directive, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1466), 1, + sym__declaration_specifiers, + ACTIONS(2196), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2136), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(2159), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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(559), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2144), 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(2147), 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, + [338] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2176), 1, - anon_sym_RPAREN, - ACTIONS(2178), 1, + ACTIONS(2202), 1, anon_sym___extension__, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1190), 1, + STATE(1228), 1, sym__expression, - STATE(1752), 1, + STATE(1843), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74005,13 +74453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74028,13 +74476,11 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [114] = 25, + [449] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -74043,18 +74489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2180), 1, - anon_sym_RPAREN, - ACTIONS(2182), 1, - anon_sym___extension__, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1197), 1, + STATE(809), 1, + sym_initializer_list, + STATE(835), 1, sym__expression, - STATE(1756), 1, - sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74094,13 +74538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74117,56 +74561,54 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [228] = 23, + [557] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2150), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2156), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(2159), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(2162), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(2165), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2184), 1, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2204), 1, aux_sym_preproc_def_token1, - ACTIONS(2187), 1, + ACTIONS(2206), 1, aux_sym_preproc_if_token1, - ACTIONS(2193), 1, + ACTIONS(2210), 1, sym_preproc_directive, + ACTIONS(2212), 1, + anon_sym_RBRACE, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1462), 1, + STATE(1470), 1, sym__declaration_specifiers, - ACTIONS(2190), 2, + ACTIONS(2208), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2130), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(2153), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -74174,7 +74616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(557), 8, + STATE(589), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -74183,7 +74625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2138), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -74193,7 +74635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2141), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -74204,115 +74646,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [338] = 24, + [665] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2196), 1, - anon_sym___extension__, - STATE(773), 1, - sym_string_literal, - STATE(1213), 1, - sym__expression, - STATE(1851), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [449] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1522), 1, + ACTIONS(1524), 1, anon_sym_LBRACE, - ACTIONS(1919), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2198), 1, - sym_identifier, - ACTIONS(2200), 1, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(828), 1, + STATE(809), 1, sym_initializer_list, - STATE(838), 1, + STATE(835), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74323,16 +74678,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74353,16 +74708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74371,37 +74721,50 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [557] = 22, + [771] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(773), 1, + ACTIONS(2220), 1, + anon_sym_RPAREN, + STATE(776), 1, sym_string_literal, - STATE(828), 1, - sym_initializer_list, - STATE(838), 1, + STATE(1245), 1, sym__expression, + STATE(2163), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74411,15 +74774,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74438,11 +74792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74451,16 +74810,97 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [663] = 23, + [879] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2150), 1, + anon_sym___attribute__, + ACTIONS(2153), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2156), 1, + anon_sym___declspec, + ACTIONS(2162), 1, + sym_primitive_type, + ACTIONS(2165), 1, + anon_sym_enum, + ACTIONS(2168), 1, + anon_sym_struct, + ACTIONS(2171), 1, + anon_sym_union, + ACTIONS(2222), 1, + aux_sym_preproc_def_token1, + ACTIONS(2225), 1, + aux_sym_preproc_if_token1, + ACTIONS(2231), 1, + sym_preproc_directive, + ACTIONS(2234), 1, + anon_sym_RBRACE, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1470), 1, + sym__declaration_specifiers, + ACTIONS(2228), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2159), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(565), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2144), 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(2147), 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, + [987] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -74479,21 +74919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2236), 1, aux_sym_preproc_def_token1, - ACTIONS(2212), 1, + ACTIONS(2238), 1, aux_sym_preproc_if_token1, - ACTIONS(2214), 1, + ACTIONS(2240), 1, aux_sym_preproc_if_token2, - ACTIONS(2218), 1, + ACTIONS(2244), 1, sym_preproc_directive, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1465), 1, + STATE(1468), 1, sym__declaration_specifiers, - ACTIONS(2216), 2, + ACTIONS(2242), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -74501,13 +74941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -74515,7 +74955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(586), 8, + STATE(570), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -74545,7 +74985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [771] = 23, + [1095] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74558,15 +74998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2220), 1, + ACTIONS(2246), 1, anon_sym_SEMI, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1247), 1, + STATE(1239), 1, sym__expression, - STATE(2080), 1, + STATE(2000), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74607,13 +75047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74630,7 +75070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [879] = 23, + [1203] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74643,16 +75083,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2248), 1, + anon_sym_RPAREN, + STATE(776), 1, sym_string_literal, - STATE(1223), 1, + STATE(1258), 1, sym__expression, - STATE(1869), 1, - sym_initializer_list, + STATE(2057), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1311] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(2250), 1, + anon_sym_SEMI, + STATE(776), 1, + sym_string_literal, + STATE(1240), 1, + sym__expression, + STATE(1998), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74692,13 +75217,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1419] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2136), 1, + aux_sym_preproc_if_token2, + ACTIONS(2150), 1, + anon_sym___attribute__, + ACTIONS(2153), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2156), 1, + anon_sym___declspec, + ACTIONS(2162), 1, + sym_primitive_type, + ACTIONS(2165), 1, + anon_sym_enum, + ACTIONS(2168), 1, + anon_sym_struct, + ACTIONS(2171), 1, + anon_sym_union, + ACTIONS(2252), 1, + aux_sym_preproc_def_token1, + ACTIONS(2255), 1, + aux_sym_preproc_if_token1, + ACTIONS(2261), 1, + sym_preproc_directive, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1468), 1, + sym__declaration_specifiers, + ACTIONS(2258), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2159), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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(570), 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(2144), 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(2147), 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, + [1527] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1775), 1, + anon_sym_offsetof, + ACTIONS(1777), 1, + anon_sym__Generic, + ACTIONS(1781), 1, + sym_number_literal, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(849), 1, + sym_string_literal, + STATE(921), 1, + sym__expression, + STATE(965), 1, + sym_initializer_list, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2270), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1783), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1785), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74715,73 +75410,78 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [987] = 22, + [1635] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACE, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(917), 1, - sym__expression, - STATE(932), 1, + STATE(809), 1, sym_initializer_list, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + STATE(835), 1, + sym__expression, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74790,16 +75490,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1093] = 23, + [1743] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74812,16 +75508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1245), 1, + STATE(1248), 1, sym__expression, - STATE(1963), 1, - sym_comma_expression, + STATE(1882), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74861,13 +75557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74884,7 +75580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1201] = 23, + [1851] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74897,15 +75593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2232), 1, + ACTIONS(2278), 1, anon_sym_SEMI, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1214), 1, + STATE(1210), 1, sym__expression, - STATE(2171), 1, + STATE(2058), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74946,13 +75642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74969,75 +75665,160 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1309] = 23, + [1959] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACE, - ACTIONS(1802), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(917), 1, + STATE(1257), 1, sym__expression, - STATE(932), 1, + STATE(1878), 1, sym_initializer_list, - ACTIONS(1806), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2067] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(2280), 1, + anon_sym_SEMI, + STATE(776), 1, + sym_string_literal, + STATE(1255), 1, + sym__expression, + STATE(2052), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75054,7 +75835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1417] = 23, + [2175] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75067,15 +75848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_RPAREN, - STATE(773), 1, + ACTIONS(2282), 1, + anon_sym_SEMI, + STATE(776), 1, sym_string_literal, - STATE(1244), 1, + STATE(1219), 1, sym__expression, - STATE(1964), 1, + STATE(2046), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75116,13 +75897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75139,7 +75920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1525] = 23, + [2283] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75152,16 +75933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2284), 1, + anon_sym_SEMI, + STATE(776), 1, sym_string_literal, - STATE(1257), 1, + STATE(1241), 1, sym__expression, - STATE(1907), 1, - sym_initializer_list, + STATE(2164), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75201,13 +75982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75224,7 +76005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1633] = 23, + [2391] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75237,15 +76018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2242), 1, - anon_sym_SEMI, - STATE(773), 1, + ACTIONS(2286), 1, + anon_sym_RPAREN, + STATE(776), 1, sym_string_literal, - STATE(1215), 1, + STATE(1260), 1, sym__expression, - STATE(2087), 1, + STATE(2055), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75286,13 +76067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75309,7 +76090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1741] = 23, + [2499] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75322,15 +76103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2288), 1, anon_sym_SEMI, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1216), 1, + STATE(1212), 1, sym__expression, - STATE(2086), 1, + STATE(2118), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75371,13 +76152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75394,7 +76175,91 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1849] = 23, + [2607] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, + anon_sym_offsetof, + ACTIONS(1777), 1, + anon_sym__Generic, + ACTIONS(1781), 1, + sym_number_literal, + ACTIONS(2290), 1, + sym_identifier, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, + sym_string_literal, + STATE(921), 1, + sym__expression, + STATE(965), 1, + sym_initializer_list, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1783), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1785), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2713] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75407,15 +76272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2246), 1, + ACTIONS(2296), 1, anon_sym_RPAREN, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1236), 1, + STATE(1235), 1, sym__expression, - STATE(2026), 1, + STATE(2125), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75456,13 +76321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75479,7 +76344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1957] = 23, + [2821] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75492,16 +76357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2298), 1, + anon_sym_RPAREN, + STATE(776), 1, sym_string_literal, - STATE(1259), 1, + STATE(1253), 1, sym__expression, - STATE(1903), 1, - sym_initializer_list, + STATE(2128), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75541,13 +76406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75564,7 +76429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2065] = 23, + [2929] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75577,16 +76442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_RPAREN, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1250), 1, + STATE(1262), 1, sym__expression, - STATE(1957), 1, - sym_comma_expression, + STATE(1879), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75626,13 +76491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75649,92 +76514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2173] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2250), 1, - aux_sym_preproc_def_token1, - ACTIONS(2252), 1, - aux_sym_preproc_if_token1, - ACTIONS(2256), 1, - sym_preproc_directive, - ACTIONS(2258), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1464), 1, - sym__declaration_specifiers, - ACTIONS(2254), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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(589), 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, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [2281] = 23, + [3037] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75747,15 +76527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2260), 1, + ACTIONS(2300), 1, anon_sym_RPAREN, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1234), 1, + STATE(1251), 1, sym__expression, - STATE(2025), 1, + STATE(2127), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75796,13 +76576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75819,7 +76599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2389] = 23, + [3145] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75828,19 +76608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(828), 1, + STATE(809), 1, sym_initializer_list, - STATE(996), 1, + STATE(985), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75851,16 +76631,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75881,16 +76661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75899,12 +76674,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2497] = 23, + [3251] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75917,15 +76696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2262), 1, - anon_sym_RPAREN, - STATE(773), 1, + ACTIONS(2306), 1, + anon_sym_SEMI, + STATE(776), 1, sym_string_literal, - STATE(1212), 1, + STATE(1246), 1, sym__expression, - STATE(1925), 1, + STATE(1971), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75966,13 +76745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75989,41 +76768,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2605] = 23, + [3359] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2264), 1, - anon_sym_SEMI, - STATE(773), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1227), 1, + STATE(809), 1, + sym_initializer_list, + STATE(985), 1, sym__expression, - STATE(2178), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76033,6 +76800,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76051,13 +76830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76074,7 +76853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2713] = 23, + [3467] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -76093,21 +76872,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, + ACTIONS(2204), 1, + aux_sym_preproc_def_token1, + ACTIONS(2206), 1, + aux_sym_preproc_if_token1, ACTIONS(2210), 1, + sym_preproc_directive, + ACTIONS(2308), 1, + anon_sym_RBRACE, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1470), 1, + sym__declaration_specifiers, + ACTIONS(2208), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(565), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(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, + [3575] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2236), 1, aux_sym_preproc_def_token1, - ACTIONS(2212), 1, + ACTIONS(2238), 1, aux_sym_preproc_if_token1, - ACTIONS(2218), 1, + ACTIONS(2244), 1, sym_preproc_directive, - ACTIONS(2266), 1, + ACTIONS(2310), 1, aux_sym_preproc_if_token2, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1465), 1, + STATE(1468), 1, sym__declaration_specifiers, - ACTIONS(2216), 2, + ACTIONS(2242), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -76115,13 +76979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76129,7 +76993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(561), 8, + STATE(566), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -76159,41 +77023,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2821] = 23, + [3683] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2268), 1, - anon_sym_SEMI, - STATE(773), 1, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1243), 1, + STATE(809), 1, + sym_initializer_list, + STATE(835), 1, sym__expression, - STATE(1961), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76203,6 +77058,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2314), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76221,16 +77085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76239,34 +77098,48 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2929] = 22, + [3789] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - STATE(773), 1, + ACTIONS(2316), 1, + anon_sym_COLON, + STATE(776), 1, sym_string_literal, - STATE(828), 1, - sym_initializer_list, - STATE(996), 1, + STATE(1272), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76276,18 +77149,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76306,11 +77167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76319,50 +77185,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3035] = 23, + [3894] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_SEMI, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2318), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(1233), 1, + STATE(1000), 1, sym__expression, - STATE(2077), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76372,6 +77220,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76390,16 +77250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76408,46 +77263,36 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3143] = 23, + [3997] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_SEMI, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2320), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(1205), 1, + STATE(1000), 1, sym__expression, - STATE(1996), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76457,6 +77302,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76475,16 +77332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76493,12 +77345,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3251] = 22, + [4100] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76507,19 +77363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + ACTIONS(2322), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(828), 1, - sym_initializer_list, - STATE(838), 1, + STATE(1000), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -76530,16 +77384,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76560,7 +77414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76582,92 +77436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3357] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2130), 1, - aux_sym_preproc_if_token2, - ACTIONS(2144), 1, - anon_sym___attribute__, - ACTIONS(2147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2150), 1, - anon_sym___declspec, - ACTIONS(2156), 1, - sym_primitive_type, - ACTIONS(2159), 1, - anon_sym_enum, - ACTIONS(2162), 1, - anon_sym_struct, - ACTIONS(2165), 1, - anon_sym_union, - ACTIONS(2282), 1, - aux_sym_preproc_def_token1, - ACTIONS(2285), 1, - aux_sym_preproc_if_token1, - ACTIONS(2291), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1465), 1, - sym__declaration_specifiers, - ACTIONS(2288), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2153), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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(586), 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(2138), 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(2141), 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, - [3465] = 23, + [4203] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76680,15 +77449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1522), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2324), 1, + anon_sym_COLON, + STATE(776), 1, sym_string_literal, - STATE(828), 1, - sym_initializer_list, - STATE(838), 1, + STATE(1268), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76729,13 +77496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76752,197 +77519,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3573] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2250), 1, - aux_sym_preproc_def_token1, - ACTIONS(2252), 1, - aux_sym_preproc_if_token1, - ACTIONS(2256), 1, - sym_preproc_directive, - ACTIONS(2294), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1464), 1, - sym__declaration_specifiers, - ACTIONS(2254), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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(575), 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, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3681] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym___attribute__, - ACTIONS(2147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2150), 1, - anon_sym___declspec, - ACTIONS(2156), 1, - sym_primitive_type, - ACTIONS(2159), 1, - anon_sym_enum, - ACTIONS(2162), 1, - anon_sym_struct, - ACTIONS(2165), 1, - anon_sym_union, - ACTIONS(2296), 1, - aux_sym_preproc_def_token1, - ACTIONS(2299), 1, - aux_sym_preproc_if_token1, - ACTIONS(2305), 1, - sym_preproc_directive, - ACTIONS(2308), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1464), 1, - sym__declaration_specifiers, - ACTIONS(2302), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2153), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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(589), 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(2138), 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(2141), 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, - [3789] = 21, + [4308] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - ACTIONS(2310), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1198), 1, sym__expression, + STATE(1895), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76952,18 +77561,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76982,11 +77579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76995,16 +77597,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3892] = 21, + [4413] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77013,17 +77611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - ACTIONS(2312), 1, + ACTIONS(2326), 1, anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1000), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77043,7 +77641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77064,7 +77662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77086,39 +77684,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3995] = 22, + [4516] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2314), 1, - anon_sym_COLON, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2328), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(1296), 1, + STATE(1000), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77128,6 +77714,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77146,16 +77744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77164,12 +77757,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4100] = 22, + [4619] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77182,14 +77779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2330), 1, + anon_sym_COLON, + STATE(776), 1, sym_string_literal, - STATE(1198), 1, + STATE(1267), 1, sym__expression, - STATE(1874), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77229,13 +77826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77252,94 +77849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4205] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2083), 1, - anon_sym_RPAREN, - ACTIONS(2091), 1, - anon_sym_LBRACK, - ACTIONS(2316), 1, - anon_sym_LPAREN2, - ACTIONS(2318), 1, - anon_sym_STAR, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1393), 1, - sym__declaration_specifiers, - STATE(1656), 1, - sym_parameter_list, - STATE(1731), 1, - sym__abstract_declarator, - STATE(1760), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1641), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, - [4318] = 21, + [4724] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77348,17 +77858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - ACTIONS(2320), 1, + ACTIONS(2332), 1, anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1000), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77378,7 +77888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77399,7 +77909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77421,39 +77931,114 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4421] = 22, + [4827] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2085), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2087), 1, + anon_sym_RPAREN, + ACTIONS(2095), 1, + anon_sym_LBRACK, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + ACTIONS(2336), 1, + anon_sym_STAR, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1349), 1, + sym__declaration_specifiers, + STATE(1653), 1, + sym_parameter_list, + STATE(1704), 1, + sym__abstract_declarator, + STATE(1743), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1650), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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, + [4940] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2338), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(1231), 1, + STATE(1000), 1, sym__expression, - STATE(2067), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77463,6 +78048,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77481,16 +78078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77499,32 +78091,48 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4526] = 21, + [5043] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - ACTIONS(2322), 1, - anon_sym_RBRACK, - STATE(773), 1, + ACTIONS(2340), 1, + anon_sym_COLON, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1284), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77534,18 +78142,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77564,11 +78160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77577,16 +78178,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4629] = 22, + [5148] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77599,13 +78196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2324), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1288), 1, + STATE(1299), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77646,13 +78243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77669,7 +78266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4734] = 22, + [5253] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77682,14 +78279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2344), 1, + anon_sym_COLON, + STATE(776), 1, sym_string_literal, - STATE(1224), 1, + STATE(1277), 1, sym__expression, - STATE(2183), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77729,16 +78326,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5358] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, + anon_sym_RBRACK, + STATE(776), 1, + sym_string_literal, + STATE(1000), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77747,12 +78422,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4839] = 22, + [5461] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77765,13 +78444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(2348), 1, anon_sym_COLON, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1268), 1, + STATE(1292), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77812,13 +78491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77835,7 +78514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4944] = 21, + [5566] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77844,17 +78523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - ACTIONS(2328), 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1000), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77874,7 +78553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77895,7 +78574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77917,7 +78596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5047] = 22, + [5669] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77930,13 +78609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2330), 1, + ACTIONS(2352), 1, anon_sym_COLON, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1267), 1, + STATE(1289), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77977,13 +78656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78000,27 +78679,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5152] = 21, + [5774] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - ACTIONS(2332), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1230), 1, sym__expression, + STATE(2145), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78030,18 +78721,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78060,11 +78739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78073,48 +78757,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5255] = 22, + [5879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2334), 1, - anon_sym_COLON, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_RBRACK, + STATE(776), 1, sym_string_literal, - STATE(1294), 1, + STATE(1000), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78124,6 +78792,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78142,16 +78822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78160,12 +78835,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5360] = 22, + [5982] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78178,14 +78857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2336), 1, - anon_sym_COLON, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1283), 1, + STATE(1226), 1, sym__expression, + STATE(1966), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78225,13 +78904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78248,7 +78927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5465] = 21, + [6087] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78257,17 +78936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2214), 1, anon_sym_LPAREN2, - ACTIONS(2338), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(879), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78278,16 +78955,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78308,7 +78985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78330,7 +79007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5568] = 22, + [6187] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78343,13 +79020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2340), 1, - anon_sym_COLON, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1295), 1, + STATE(842), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78390,13 +79065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78413,27 +79088,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5673] = 21, + [6289] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(1222), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78443,37 +79128,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6391] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, + anon_sym_offsetof, + ACTIONS(1777), 1, + anon_sym__Generic, + ACTIONS(1781), 1, + sym_number_literal, + ACTIONS(2290), 1, + sym_identifier, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, + sym_string_literal, + STATE(911), 1, + sym__expression, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78495,67 +79249,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5776] = 21, + [6491] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - ACTIONS(2344), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1009), 1, + STATE(916), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78577,67 +79329,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5879] = 21, + [6591] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - ACTIONS(2346), 1, - anon_sym_RBRACK, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1009), 1, + STATE(917), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78659,76 +79409,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5982] = 22, + [6691] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2348), 1, - anon_sym_COLON, - STATE(773), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1271), 1, + STATE(918), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78737,70 +79480,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6087] = 20, + [6791] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(876), 1, + STATE(922), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78822,74 +79569,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6187] = 21, + [6891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(842), 1, + STATE(924), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78898,79 +79640,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6289] = 21, + [6991] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1261), 1, + STATE(906), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78979,79 +79720,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6391] = 21, + [7091] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - STATE(920), 1, + STATE(907), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1816), 2, + ACTIONS(1789), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79060,12 +79800,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6493] = 20, + [7191] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79074,15 +79818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(882), 1, + STATE(983), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -79093,16 +79837,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79123,7 +79867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79145,7 +79889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6593] = 21, + [7291] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79158,11 +79902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1200), 1, + STATE(1162), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79203,13 +79947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79226,7 +79970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6695] = 20, + [7393] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79235,16 +79979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2350), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(836), 1, + STATE(896), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79260,10 +80007,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2314), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7493] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, + anon_sym_LPAREN2, + STATE(776), 1, + sym_string_literal, + STATE(895), 1, + sym__expression, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79284,7 +80108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79306,7 +80130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6795] = 21, + [7593] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79319,11 +80143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1193), 1, + STATE(1199), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79364,13 +80188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79387,7 +80211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6897] = 20, + [7695] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79396,19 +80220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(888), 1, + STATE(1291), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79418,13 +80239,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79445,11 +80269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79458,16 +80287,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6997] = 21, + [7797] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79480,11 +80305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(831), 1, + STATE(1160), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79525,13 +80350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79548,7 +80373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7099] = 20, + [7899] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79557,15 +80382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(832), 1, + STATE(843), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -79579,13 +80404,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79606,7 +80431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79628,71 +80453,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7199] = 21, + [7999] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(915), 1, + STATE(1157), 1, sym__expression, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79709,7 +80534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7301] = 20, + [8101] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79718,16 +80543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(880), 1, + STATE(893), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79743,10 +80571,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79767,7 +80592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79789,28 +80614,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7401] = 20, + [8201] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(831), 1, + STATE(1270), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79820,15 +80654,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79847,91 +80672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(910), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7501] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, - anon_sym_offsetof, - ACTIONS(1804), 1, - anon_sym__Generic, - ACTIONS(1808), 1, - sym_number_literal, - ACTIONS(2222), 1, - sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, - sym_string_literal, - STATE(921), 1, - sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1810), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1812), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(925), 21, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79940,34 +80690,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7601] = 20, + [8303] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(883), 1, + STATE(1153), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79977,18 +80735,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80007,11 +80753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80020,34 +80771,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7701] = 21, + [8405] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2200), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1137), 1, + STATE(1152), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80057,18 +80816,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80087,13 +80834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80110,25 +80857,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7803] = 20, + [8507] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(885), 1, + STATE(1150), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80138,18 +80897,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80168,11 +80915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80181,37 +80933,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7903] = 20, + [8609] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(837), 1, + STATE(1148), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80221,15 +80978,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80248,11 +80996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80261,37 +81014,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8003] = 20, + [8711] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2352), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(836), 1, + STATE(837), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80301,15 +81059,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80328,11 +81077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80341,34 +81095,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8103] = 21, + [8813] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2354), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(836), 1, + STATE(1147), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80378,18 +81140,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80408,13 +81158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80431,7 +81181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8205] = 21, + [8915] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80440,15 +81190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1011), 1, + STATE(987), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80459,16 +81209,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80489,16 +81239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80507,12 +81252,90 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8307] = 20, + [9015] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_const, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + ACTIONS(1961), 1, + anon_sym_STAR, + ACTIONS(1971), 1, + anon_sym_EQ, + STATE(774), 1, + sym_string_literal, + STATE(1079), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1964), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2358), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1967), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1975), 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(1959), 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(1953), 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, + [9103] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80521,15 +81344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(878), 1, + STATE(989), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80540,16 +81363,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80570,7 +81393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80592,7 +81415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8407] = 21, + [9203] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80601,15 +81424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1134), 1, + STATE(990), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80620,16 +81443,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80650,16 +81473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80668,42 +81486,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8509] = 21, + [9303] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1280), 1, + STATE(991), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80713,6 +81523,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80731,16 +81553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80749,12 +81566,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8611] = 21, + [9403] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80763,16 +81584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1135), 1, + STATE(891), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80782,16 +81606,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80812,16 +81633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80830,12 +81646,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8713] = 20, + [9503] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80844,15 +81664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1009), 1, + STATE(992), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80872,7 +81692,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80893,7 +81713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80915,7 +81735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8813] = 21, + [9603] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80924,15 +81744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1139), 1, + STATE(993), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80943,16 +81763,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80973,16 +81793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80991,12 +81806,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8915] = 20, + [9703] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81005,15 +81824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(879), 1, + STATE(995), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81024,16 +81843,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81054,7 +81873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81076,186 +81895,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9015] = 21, + [9803] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, - sym_string_literal, - STATE(1277), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9117] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1802), 1, - anon_sym_offsetof, - ACTIONS(1804), 1, - anon_sym__Generic, - ACTIONS(1808), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(2356), 1, - anon_sym_LPAREN2, - STATE(847), 1, - sym_string_literal, - STATE(916), 1, - sym__expression, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2226), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1810), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1812), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9219] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1524), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(873), 1, + STATE(972), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81266,16 +81923,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81296,7 +81953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81318,7 +81975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9319] = 21, + [9903] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81327,15 +81984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1128), 1, + STATE(997), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81346,16 +82003,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81376,16 +82033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81394,12 +82046,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9421] = 20, + [10003] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81408,15 +82064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(842), 1, + STATE(1001), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81427,16 +82083,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81457,7 +82113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81479,7 +82135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9521] = 20, + [10103] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81488,15 +82144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(881), 1, + STATE(999), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81507,16 +82163,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81537,7 +82193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81559,7 +82215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9621] = 20, + [10203] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81568,15 +82224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(837), 1, + STATE(1002), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81587,16 +82243,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81617,7 +82273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81639,7 +82295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9721] = 20, + [10303] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81648,15 +82304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(831), 1, + STATE(1206), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81667,16 +82323,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81697,11 +82353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81710,16 +82371,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9821] = 21, + [10405] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81732,11 +82389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1291), 1, + STATE(1149), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81777,13 +82434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81800,25 +82457,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9923] = 21, + [10507] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2200), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1138), 1, + STATE(1163), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81828,18 +82497,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81858,13 +82515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81881,7 +82538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10025] = 21, + [10609] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81890,15 +82547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2360), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(842), 1, + STATE(1005), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81909,16 +82566,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81939,16 +82596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81957,42 +82609,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10127] = 21, + [10709] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1270), 1, + STATE(1220), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82002,6 +82646,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82020,13 +82676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82043,74 +82699,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10229] = 21, + [10811] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1132), 1, + STATE(915), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1915), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82119,79 +82770,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10331] = 21, + [10911] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(837), 1, + STATE(914), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82200,14 +82850,20 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10433] = 21, + [11011] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -82216,13 +82872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2358), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(836), 1, + STATE(1271), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82263,13 +82917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82286,7 +82940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10535] = 20, + [11113] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82295,16 +82949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(971), 1, + STATE(831), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82314,16 +82971,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82344,7 +82998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82366,105 +83020,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10635] = 21, + [11213] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - STATE(773), 1, - sym_string_literal, - STATE(1265), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10737] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(874), 1, + STATE(1202), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82475,16 +83048,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82505,11 +83078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82518,74 +83096,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10837] = 20, + [11315] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(912), 1, + STATE(842), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82607,37 +83181,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10937] = 21, + [11415] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1273), 1, + STATE(831), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82647,6 +83209,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82665,16 +83239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82683,12 +83252,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11039] = 21, + [11515] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82697,15 +83270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1133), 1, + STATE(887), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82716,16 +83289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82746,16 +83319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82764,70 +83332,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11141] = 20, + [11615] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2360), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(916), 1, + STATE(884), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82849,7 +83421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11241] = 21, + [11715] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82858,16 +83430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1140), 1, + STATE(894), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82877,16 +83452,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82907,16 +83479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82925,12 +83492,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11343] = 21, + [11815] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82943,11 +83514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1274), 1, + STATE(1155), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82988,13 +83559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83011,69 +83582,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11445] = 20, + [11917] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(915), 1, + STATE(1274), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83082,16 +83658,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11545] = 21, + [12019] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83100,15 +83672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1130), 1, + STATE(994), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83119,16 +83691,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83149,16 +83721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83167,79 +83734,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11647] = 21, + [12119] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2362), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1230), 1, + STATE(912), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83248,79 +83814,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11749] = 21, + [12219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2292), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1149), 1, + STATE(908), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2294), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83329,12 +83894,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11851] = 21, + [12319] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -83347,11 +83916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1286), 1, + STATE(1295), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83392,13 +83961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83415,7 +83984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11953] = 20, + [12421] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83424,15 +83993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(875), 1, + STATE(1201), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83443,16 +84012,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83473,91 +84042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(1020), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12053] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, - anon_sym_offsetof, - ACTIONS(1804), 1, - anon_sym__Generic, - ACTIONS(1808), 1, - sym_number_literal, - ACTIONS(2222), 1, - sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, - sym_string_literal, - STATE(906), 1, - sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2228), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1810), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1812), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(925), 21, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83566,154 +84060,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12153] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1955), 1, - anon_sym_LPAREN2, - ACTIONS(1961), 1, - anon_sym_STAR, - ACTIONS(1968), 1, - anon_sym_EQ, - STATE(771), 1, - sym_string_literal, - STATE(1092), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1976), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1964), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1972), 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(1959), 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(1953), 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, - [12241] = 21, + [12523] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1165), 1, + STATE(1209), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83730,28 +84146,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12343] = 20, + [12625] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(898), 1, + STATE(1193), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83761,15 +84186,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83788,11 +84204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83801,80 +84222,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12443] = 21, + [12727] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1006), 1, + STATE(1167), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83891,69 +84308,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12545] = 20, + [12829] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(907), 1, + STATE(1250), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83962,16 +84384,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12645] = 21, + [12931] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -83984,11 +84402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1252), 1, + STATE(1282), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -84029,13 +84447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84052,69 +84470,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12747] = 20, + [13033] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(914), 1, + STATE(999), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84123,74 +84546,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12847] = 20, + [13135] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2302), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(920), 1, + STATE(1000), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84212,37 +84631,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12947] = 21, + [13235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1151), 1, + STATE(1214), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84252,6 +84659,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84270,13 +84689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84293,69 +84712,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13049] = 20, + [13337] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(909), 1, + STATE(1002), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84364,78 +84788,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13149] = 20, + [13439] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(2364), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(918), 1, + STATE(1005), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84444,74 +84869,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13249] = 20, + [13541] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - STATE(922), 1, + STATE(920), 1, sym__expression, - ACTIONS(1792), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1816), 2, + ACTIONS(1789), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84533,69 +84954,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13349] = 20, + [13641] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(911), 1, + STATE(1285), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84604,78 +85030,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13449] = 20, + [13743] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - STATE(913), 1, + STATE(1169), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1816), 2, + ACTIONS(1789), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(1923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84684,78 +85111,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13549] = 20, + [13845] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(905), 1, + STATE(1286), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84764,16 +85192,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13649] = 20, + [13947] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84782,15 +85206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2364), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1004), 1, + STATE(1137), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84801,16 +85225,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84831,11 +85255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84844,78 +85273,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13749] = 20, + [14049] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(904), 1, + STATE(1136), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84924,16 +85354,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13849] = 20, + [14151] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84942,15 +85368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1006), 1, + STATE(837), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84961,16 +85387,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84991,11 +85417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85004,78 +85435,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13949] = 20, + [14253] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2222), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(910), 1, + STATE(1224), 1, sym__expression, - ACTIONS(1792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2228), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(925), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85084,16 +85516,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14049] = 20, + [14355] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85102,15 +85530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1011), 1, + STATE(1135), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85121,16 +85549,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85151,11 +85579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85164,16 +85597,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14149] = 21, + [14457] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85182,15 +85611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1129), 1, + STATE(1133), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85201,16 +85630,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85231,13 +85660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85254,32 +85683,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14251] = 21, + [14559] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(1781), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(2264), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - STATE(1168), 1, + STATE(1181), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1816), 2, + ACTIONS(1789), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -85288,37 +85717,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85335,7 +85764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14353] = 20, + [14661] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85344,15 +85773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(981), 1, + STATE(1134), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85363,16 +85792,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85393,11 +85822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85406,16 +85840,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14453] = 20, + [14763] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85424,19 +85854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(902), 1, + STATE(1132), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85446,13 +85873,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85473,11 +85903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85486,16 +85921,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14553] = 20, + [14865] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85504,15 +85935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(992), 1, + STATE(1131), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85523,16 +85954,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85553,91 +85984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(901), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [14653] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(773), 1, - sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2208), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85646,16 +86002,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14753] = 20, + [14967] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85664,19 +86016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(896), 1, + STATE(1130), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85686,13 +86035,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85713,11 +86065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85726,78 +86083,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14853] = 20, + [15069] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(895), 1, + STATE(915), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85806,16 +86164,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14953] = 21, + [15171] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85830,9 +86184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1290), 1, + STATE(1236), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85873,13 +86227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85896,7 +86250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15055] = 20, + [15273] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85905,19 +86259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(894), 1, + STATE(1141), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85927,13 +86278,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85954,11 +86308,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85967,80 +86326,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15155] = 21, + [15375] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1253), 1, + STATE(908), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86057,7 +86412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15257] = 20, + [15477] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86066,19 +86421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(893), 1, + STATE(994), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86088,13 +86440,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86115,11 +86470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86128,16 +86488,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15357] = 20, + [15579] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86146,15 +86502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(993), 1, + STATE(1142), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86165,16 +86521,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86195,11 +86551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(901), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86208,16 +86569,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15457] = 20, + [15681] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86226,19 +86583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(892), 1, + STATE(1215), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86248,13 +86602,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86275,11 +86632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86288,115 +86650,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15557] = 21, + [15783] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1251), 1, + STATE(1273), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15659] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - STATE(773), 1, - sym_string_literal, - STATE(979), 1, - sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86406,18 +86695,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86436,11 +86713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(910), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86449,16 +86731,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15759] = 21, + [15885] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86473,9 +86751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(971), 1, + STATE(1218), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86516,13 +86794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86539,7 +86817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15861] = 21, + [15987] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86548,16 +86826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1249), 1, + STATE(888), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86567,16 +86848,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86597,16 +86875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86615,30 +86888,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15963] = 21, + [16087] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2200), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, STATE(831), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86648,18 +86937,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2204), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86678,13 +86955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86701,7 +86978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16065] = 20, + [16189] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86710,16 +86987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, STATE(832), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86735,10 +87015,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86759,7 +87036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86781,71 +87058,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16165] = 21, + [16289] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(2264), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(837), 1, + STATE(912), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86862,74 +87139,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16267] = 21, + [16391] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1172), 1, + STATE(876), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86938,18 +87210,18 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16369] = 21, + [16491] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, @@ -86957,23 +87229,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(157), 1, sym_number_literal, ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1189), 1, + STATE(1138), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86983,6 +87247,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2276), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87001,13 +87277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87024,7 +87300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16471] = 21, + [16593] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87033,15 +87309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1202), 1, + STATE(1143), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87052,16 +87328,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87082,13 +87358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87105,7 +87381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16573] = 21, + [16695] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87114,15 +87390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1246), 1, + STATE(1140), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87133,16 +87409,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87163,13 +87439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87186,7 +87462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16675] = 21, + [16797] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87195,15 +87471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2368), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1242), 1, + STATE(843), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87214,16 +87490,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87244,16 +87520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87262,12 +87533,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16777] = 21, + [16897] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87276,15 +87551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2370), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1240), 1, + STATE(843), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87295,16 +87570,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87325,13 +87600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87348,65 +87623,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16879] = 20, + [16999] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(991), 1, + STATE(909), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87428,7 +87703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16979] = 20, + [17099] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87437,15 +87712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(969), 1, + STATE(875), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87456,16 +87731,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87486,7 +87761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87508,25 +87783,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17079] = 21, + [17199] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1232), 1, + STATE(1159), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87536,18 +87823,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87566,13 +87841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87589,25 +87864,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17181] = 21, + [17301] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1226), 1, + STATE(1298), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87617,18 +87904,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87647,13 +87922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87670,65 +87945,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17283] = 20, + [17403] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(997), 1, + STATE(913), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1767), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87750,7 +88025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17383] = 20, + [17503] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87759,16 +88034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1005), 1, + STATE(842), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87778,16 +88056,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87808,7 +88083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87830,71 +88105,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17483] = 21, + [17603] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1147), 1, + STATE(1171), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87911,71 +88186,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17585] = 21, + [17705] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1222), 1, + STATE(1173), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87992,71 +88267,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17687] = 21, + [17807] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1195), 1, + STATE(1175), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88073,69 +88348,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17789] = 20, + [17909] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1007), 1, + STATE(1176), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88144,78 +88424,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17889] = 20, + [18011] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(891), 1, + STATE(1177), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2268), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88224,80 +88505,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17989] = 21, + [18113] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1262), 1, + STATE(1178), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88314,69 +88591,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18091] = 20, + [18215] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1014), 1, + STATE(1179), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88385,80 +88667,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18191] = 21, + [18317] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1155), 1, + STATE(1182), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88475,69 +88753,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18293] = 20, + [18419] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1526), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2270), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1012), 1, + STATE(906), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2272), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(952), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88546,80 +88829,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18393] = 21, + [18521] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2264), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(849), 1, sym_string_literal, - STATE(1191), 1, + STATE(1168), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1779), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1787), 2, + sym_true, + sym_false, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88636,7 +88915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18495] = 21, + [18623] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -88649,11 +88928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1146), 1, + STATE(1265), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -88694,13 +88973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88717,71 +88996,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18597] = 21, + [18725] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2264), 1, + sym_identifier, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(849), 1, sym_string_literal, - STATE(1219), 1, + STATE(1172), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1789), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2270), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(952), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(928), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88798,37 +89077,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18699] = 21, + [18827] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1148), 1, + STATE(889), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88838,87 +89108,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18801] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - STATE(773), 1, - sym_string_literal, - STATE(1150), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -88937,16 +89135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88955,42 +89148,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18903] = 21, + [18927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1154), 1, + STATE(837), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89000,6 +89188,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1518), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1520), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2314), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89018,16 +89215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89036,12 +89228,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19005] = 21, + [19027] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -89054,11 +89250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1156), 1, + STATE(1194), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89099,13 +89295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89122,7 +89318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19107] = 21, + [19129] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89131,15 +89327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2366), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1004), 1, + STATE(831), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89150,99 +89346,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19209] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - STATE(773), 1, - sym_string_literal, - STATE(1157), 1, - sym__expression, - ACTIONS(21), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89261,13 +89376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89284,7 +89399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19311] = 21, + [19231] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89299,9 +89414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1221), 1, + STATE(1208), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89342,13 +89457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89365,7 +89480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19413] = 20, + [19333] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89374,15 +89489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(890), 1, + STATE(903), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -89396,13 +89511,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89423,7 +89538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89445,7 +89560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19513] = 21, + [19433] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89460,9 +89575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1209), 1, + STATE(1300), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89503,13 +89618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89526,7 +89641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19615] = 21, + [19535] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89535,16 +89650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1526), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1298), 1, + STATE(900), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89554,16 +89672,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89584,16 +89699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1017), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89602,76 +89712,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19717] = 21, + [19635] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1179), 1, + STATE(1294), 1, sym__expression, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89688,11 +89802,9 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19819] = 21, + [19737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -89701,11 +89813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + ACTIONS(2372), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1158), 1, + STATE(843), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89746,13 +89860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89769,7 +89883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19921] = 21, + [19839] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89778,15 +89892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1136), 1, + STATE(877), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89797,16 +89911,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89827,16 +89941,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(820), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, sym_subscript_expression, sym_call_expression, + sym_gnu_asm_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(807), 16, + sym_char_literal, + sym_concatenated_string, + sym_null, + [19939] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, + anon_sym_LPAREN2, + STATE(776), 1, + sym_string_literal, + STATE(878), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89845,12 +90034,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20023] = 21, + [20039] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -89863,11 +90056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1915), 1, sym_identifier, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1159), 1, + STATE(1196), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89908,13 +90101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89931,37 +90124,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20125] = 21, + [20141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1196), 1, + STATE(832), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89971,6 +90152,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89989,16 +90182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90007,12 +90195,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20227] = 21, + [20241] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90021,15 +90213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2200), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(1131), 1, + STATE(1261), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90040,16 +90232,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2202), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2204), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90070,13 +90262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(899), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90093,7 +90285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20329] = 20, + [20343] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90102,19 +90294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1526), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(773), 1, + STATE(776), 1, sym_string_literal, - STATE(889), 1, + STATE(1207), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90124,13 +90313,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2208), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90151,11 +90343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(807), 21, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90164,80 +90361,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20429] = 21, + [20445] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1170), 1, + STATE(842), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2276), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(901), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90254,71 +90447,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20531] = 21, + [20547] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1171), 1, + STATE(1249), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90335,74 +90528,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20633] = 21, + [20649] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1164), 1, + STATE(898), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90411,79 +90599,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20735] = 21, + [20749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1526), 1, + anon_sym_sizeof, + ACTIONS(2312), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1178), 1, + STATE(897), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1518), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1520), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2314), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90492,76 +90679,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20837] = 21, + [20849] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1915), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1163), 1, + STATE(1197), 1, sym__expression, - ACTIONS(1806), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, + STATE(910), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90578,74 +90769,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20939] = 21, + [20951] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1173), 1, + STATE(881), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90654,42 +90840,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21041] = 21, + [21051] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(773), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, + anon_sym_LPAREN2, + STATE(776), 1, sym_string_literal, - STATE(1266), 1, + STATE(886), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90699,6 +90877,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2216), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2218), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90717,16 +90907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(919), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(807), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90735,79 +90920,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21143] = 21, + [21151] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1174), 1, + STATE(885), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90816,79 +91000,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21245] = 21, + [21251] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(1176), 1, + STATE(837), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90897,79 +91080,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21347] = 21, + [21351] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(1777), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(1781), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(2290), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2292), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - STATE(1177), 1, + STATE(923), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1767), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1779), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, + ACTIONS(1787), 2, sym_true, sym_false, - ACTIONS(1816), 2, + ACTIONS(1789), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2294), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(1773), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(1783), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(928), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90978,79 +91160,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21449] = 21, + [21451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1804), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1808), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2214), 1, anon_sym_LPAREN2, - STATE(847), 1, + STATE(776), 1, sym_string_literal, - STATE(914), 1, + STATE(883), 1, sym__expression, - ACTIONS(1806), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1814), 2, - sym_true, - sym_false, - ACTIONS(1816), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2226), 2, + ACTIONS(2216), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2238), 2, + ACTIONS(2218), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1810), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1812), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(950), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(925), 16, + STATE(820), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91059,8 +91240,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, @@ -91083,17 +91268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2368), 1, + ACTIONS(2374), 1, anon_sym_LBRACE, - STATE(852), 1, + STATE(861), 1, sym_ms_call_modifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1490), 1, + STATE(1496), 1, sym__declaration_specifiers, - STATE(476), 3, + STATE(205), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91102,7 +91287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91115,7 +91300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91144,72 +91329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 1, - sym_identifier, - STATE(766), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2377), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 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(2373), 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, - [21723] = 21, + [21652] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91228,17 +91348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2380), 1, + ACTIONS(2376), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(863), 1, sym_ms_call_modifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1500), 1, + STATE(1501), 1, sym__declaration_specifiers, - STATE(395), 3, + STATE(153), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91247,7 +91367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91260,7 +91380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91289,12 +91409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21824] = 6, + [21753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(2378), 1, sym_identifier, - STATE(766), 2, + STATE(773), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -91303,7 +91423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2386), 16, + ACTIONS(2382), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91320,7 +91440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2384), 33, + ACTIONS(2380), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91354,7 +91474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21895] = 21, + [21824] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91373,17 +91493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2388), 1, + ACTIONS(2384), 1, anon_sym_LBRACE, - STATE(861), 1, + STATE(853), 1, sym_ms_call_modifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1485), 1, + STATE(1497), 1, sym__declaration_specifiers, - STATE(228), 3, + STATE(469), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91392,7 +91512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91405,7 +91525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91434,7 +91554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21996] = 21, + [21925] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91453,17 +91573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2390), 1, + ACTIONS(2386), 1, anon_sym_LBRACE, - STATE(853), 1, + STATE(859), 1, sym_ms_call_modifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1481), 1, + STATE(1488), 1, sym__declaration_specifiers, - STATE(397), 3, + STATE(361), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91472,7 +91592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91485,7 +91605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91514,72 +91634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22097] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym_identifier, - STATE(768), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - 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, - anon_sym_DOT, - ACTIONS(2394), 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, - [22168] = 21, + [22026] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91598,17 +91653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2398), 1, + ACTIONS(2388), 1, anon_sym_LBRACE, - STATE(858), 1, + STATE(855), 1, sym_ms_call_modifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1487), 1, + STATE(1484), 1, sym__declaration_specifiers, - STATE(159), 3, + STATE(395), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91617,7 +91672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91630,7 +91685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91659,10 +91714,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [22127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2390), 1, + sym_identifier, + STATE(773), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2397), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2395), 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(2393), 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, + [22198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + sym_identifier, + STATE(769), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + 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__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2402), 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, [22269] = 5, ACTIONS(3), 1, sym_comment, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -91725,7 +91910,7 @@ static const uint16_t ts_small_parse_table[] = { [22337] = 5, ACTIONS(3), 1, sym_comment, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -91788,7 +91973,7 @@ static const uint16_t ts_small_parse_table[] = { [22405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 17, + ACTIONS(2406), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91806,7 +91991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2402), 38, + ACTIONS(2408), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91848,7 +92033,7 @@ static const uint16_t ts_small_parse_table[] = { [22468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 17, + ACTIONS(2410), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91866,7 +92051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2406), 38, + ACTIONS(2412), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91908,7 +92093,7 @@ static const uint16_t ts_small_parse_table[] = { [22531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 20, + ACTIONS(2414), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91929,7 +92114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2410), 34, + ACTIONS(2416), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91967,7 +92152,7 @@ static const uint16_t ts_small_parse_table[] = { [22593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 20, + ACTIONS(2418), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91988,7 +92173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2414), 34, + ACTIONS(2420), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92026,7 +92211,7 @@ static const uint16_t ts_small_parse_table[] = { [22655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 20, + ACTIONS(2422), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92047,7 +92232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2418), 34, + ACTIONS(2424), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92085,7 +92270,7 @@ static const uint16_t ts_small_parse_table[] = { [22717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 20, + ACTIONS(2426), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92106,7 +92291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2422), 34, + ACTIONS(2428), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92144,7 +92329,7 @@ static const uint16_t ts_small_parse_table[] = { [22779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 20, + ACTIONS(2430), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92165,7 +92350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2426), 34, + ACTIONS(2432), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92203,7 +92388,7 @@ static const uint16_t ts_small_parse_table[] = { [22841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 20, + ACTIONS(2434), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92224,7 +92409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2430), 34, + ACTIONS(2436), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92262,7 +92447,7 @@ static const uint16_t ts_small_parse_table[] = { [22903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 20, + ACTIONS(2438), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92283,7 +92468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2434), 34, + ACTIONS(2440), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92321,7 +92506,7 @@ static const uint16_t ts_small_parse_table[] = { [22965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 20, + ACTIONS(2442), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92342,7 +92527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2438), 34, + ACTIONS(2444), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92380,7 +92565,7 @@ static const uint16_t ts_small_parse_table[] = { [23027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 20, + ACTIONS(2446), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92401,7 +92586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2442), 34, + ACTIONS(2448), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92439,7 +92624,7 @@ static const uint16_t ts_small_parse_table[] = { [23089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 20, + ACTIONS(2450), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92460,7 +92645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2446), 34, + ACTIONS(2452), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92496,6 +92681,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, [23151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 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(1911), 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, + [23210] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1909), 21, @@ -92551,10 +92792,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23210] = 3, + [23269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 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(2454), 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, + [23328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2454), 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(2456), 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, + [23387] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(645), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(372), 1, + sym_compound_statement, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1486), 1, + sym__declaration_specifiers, + STATE(844), 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(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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, + [23479] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(645), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(374), 1, + sym_compound_statement, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1486), 1, + sym__declaration_specifiers, + STATE(816), 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(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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, + [23571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 17, + ACTIONS(2458), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92572,7 +93069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2450), 34, + ACTIONS(2460), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92588,7 +93085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -92607,119 +93103,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23269] = 3, + [23629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 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(1911), 30, + ACTIONS(2462), 17, + aux_sym_preproc_elif_token1, 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, - [23328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 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(2464), 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_LBRACK_LBRACK, - 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, - 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(2448), 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, - [23387] = 20, + anon_sym_DASH_GT, + [23687] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -92734,35 +93173,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2085), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2466), 1, sym_identifier, - STATE(375), 1, - sym_compound_statement, + ACTIONS(2468), 1, + anon_sym_RPAREN, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1349), 1, sym__declaration_specifiers, - STATE(830), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1690), 1, + sym_variadic_parameter, + STATE(1743), 1, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92791,10 +93231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23479] = 3, + [23781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 17, + ACTIONS(2470), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92812,7 +93252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2454), 33, + ACTIONS(2472), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92846,10 +93286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23537] = 3, + [23839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 17, + ACTIONS(2474), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92867,7 +93307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2458), 33, + ACTIONS(2476), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92901,10 +93341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23595] = 3, + [23897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 17, + ACTIONS(2478), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92922,7 +93362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2462), 33, + ACTIONS(2480), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92956,7 +93396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23653] = 20, + [23955] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -92977,15 +93417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(145), 1, + STATE(141), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -92993,13 +93433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93028,7 +93468,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23745] = 20, + [24047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2482), 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(2484), 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, + [24105] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93043,21 +93538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, + ACTIONS(645), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(378), 1, + STATE(366), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(811), 2, + STATE(793), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93065,13 +93560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93100,68 +93595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2464), 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(2466), 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, - [23895] = 20, + [24197] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -93170,21 +93612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(148), 1, + STATE(474), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(825), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93192,13 +93632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93227,15 +93667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23987] = 20, + [24289] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -93244,19 +93682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(499), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(466), 1, + STATE(400), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(807), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93264,13 +93704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93299,7 +93739,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24079] = 20, + [24381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 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(2488), 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, + [24439] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93320,15 +93815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(403), 1, + STATE(383), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(791), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93336,13 +93831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93371,10 +93866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24171] = 3, + [24531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 17, + ACTIONS(2490), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93392,7 +93887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2470), 33, + ACTIONS(2492), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93426,10 +93921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24229] = 3, + [24589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 17, + ACTIONS(2494), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93447,7 +93942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2474), 33, + ACTIONS(2496), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93481,87 +93976,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24287] = 20, + [24647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2498), 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__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(396), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, - sym__declaration_specifiers, - STATE(830), 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(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, - [24379] = 20, + ACTIONS(2500), 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, + [24705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 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(2504), 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, + [24763] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -93570,19 +94101,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(499), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(473), 1, + STATE(380), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(799), 2, + STATE(828), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93590,13 +94123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93625,7 +94158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24471] = 20, + [24855] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93646,15 +94179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(464), 1, + STATE(456), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(822), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93662,13 +94195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93697,7 +94230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24563] = 20, + [24947] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93712,21 +94245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(364), 1, + STATE(214), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(803), 2, + STATE(821), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93734,13 +94267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93769,10 +94302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24655] = 3, + [25039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 17, + ACTIONS(2506), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93790,7 +94323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2478), 33, + ACTIONS(2508), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93824,79 +94357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24713] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(359), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, - sym__declaration_specifiers, - STATE(830), 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(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, - [24805] = 20, + [25097] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93911,21 +94372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(353), 1, + ACTIONS(645), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(217), 1, + STATE(393), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(815), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93933,13 +94394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93968,7 +94429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24897] = 21, + [25189] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93983,36 +94444,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2480), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(2482), 1, - anon_sym_RPAREN, + STATE(229), 1, + sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1393), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(1660), 1, - sym_variadic_parameter, - STATE(1760), 1, - sym_parameter_declaration, + STATE(844), 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(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94041,7 +94501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24991] = 20, + [25281] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94056,21 +94516,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(386), 1, + STATE(143), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(801), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94078,13 +94538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94113,10 +94573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25083] = 3, + [25373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 17, + ACTIONS(2510), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94134,7 +94594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2486), 33, + ACTIONS(2512), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94168,7 +94628,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25141] = 20, + [25431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2514), 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(2516), 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, + [25489] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94183,21 +94698,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(155), 1, + STATE(226), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(795), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94205,13 +94720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94240,62 +94755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 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(2490), 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, - [25291] = 20, + [25581] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94310,35 +94770,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(353), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(226), 1, - sym_compound_statement, + ACTIONS(2085), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2087), 1, + anon_sym_RPAREN, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1349), 1, sym__declaration_specifiers, - STATE(830), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1743), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94367,7 +94827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25383] = 20, + [25673] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94382,21 +94842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(353), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(224), 1, + STATE(134), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(826), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94404,13 +94864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94439,10 +94899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25475] = 3, + [25765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 17, + ACTIONS(2518), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94460,7 +94920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2494), 33, + ACTIONS(2520), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94494,13 +94954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25533] = 20, + [25823] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -94509,21 +94971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(142), 1, + STATE(477), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(798), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94531,13 +94991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94566,180 +95026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 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(2498), 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, - [25683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 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(2502), 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, - [25741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 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(2506), 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, - [25799] = 20, + [25915] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -94748,19 +95041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(471), 1, + STATE(146), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(823), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94768,13 +95063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94803,13 +95098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25891] = 20, + [26007] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -94822,31 +95119,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2083), 1, - anon_sym_RPAREN, + STATE(480), 1, + sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1393), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(1760), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(813), 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(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94875,62 +95170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 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(2510), 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, - [26041] = 20, + [26099] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94945,21 +95185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(374), 1, + STATE(364), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(808), 2, + STATE(844), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94967,13 +95207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95002,7 +95242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26133] = 20, + [26191] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95017,21 +95257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(353), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(209), 1, + STATE(230), 1, sym_compound_statement, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, + STATE(1486), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(817), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95039,13 +95279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95074,65 +95314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 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(2514), 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, [26283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 17, + ACTIONS(2522), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95150,7 +95335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2518), 33, + ACTIONS(2524), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95184,143 +95369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26341] = 3, + [26341] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 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(2522), 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, - [26398] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 1, - sym_identifier, - ACTIONS(2533), 1, - anon_sym___attribute__, - ACTIONS(2536), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2539), 1, - anon_sym___declspec, - ACTIONS(2542), 1, - anon_sym_LBRACE, - ACTIONS(2547), 1, - sym_primitive_type, - ACTIONS(2550), 1, - anon_sym_enum, - ACTIONS(2553), 1, - anon_sym_struct, - ACTIONS(2556), 1, - anon_sym_union, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1480), 1, - sym__declaration_specifiers, - STATE(830), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2544), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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(2527), 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(2530), 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, - [26487] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2559), 16, + ACTIONS(2526), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95337,7 +95398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2561), 28, + ACTIONS(2528), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95366,22 +95427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [26552] = 8, + [26406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2569), 16, + ACTIONS(2536), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95398,7 +95459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2571), 26, + ACTIONS(2538), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95425,81 +95486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26619] = 20, + [26473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2575), 1, - sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1393), 1, - sym__declaration_specifiers, - STATE(1859), 1, - sym_parameter_declaration, - STATE(1897), 1, - sym_variadic_parameter, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, - [26710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2577), 16, + ACTIONS(2542), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95516,7 +95506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2579), 33, + ACTIONS(2544), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95550,7 +95540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26767] = 19, + [26530] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95569,15 +95559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2081), 1, + ACTIONS(2085), 1, anon_sym_DOT_DOT_DOT, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1393), 1, + STATE(1349), 1, sym__declaration_specifiers, - STATE(1859), 2, + STATE(1842), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(43), 4, @@ -95585,13 +95575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95620,22 +95610,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26856] = 8, + [26619] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2581), 16, + ACTIONS(2546), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95652,7 +95642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2583), 26, + ACTIONS(2548), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95679,22 +95669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26923] = 8, + [26686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2585), 16, + ACTIONS(2550), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95711,13 +95689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2587), 26, + ACTIONS(2552), 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, @@ -95725,7 +95704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95738,22 +95719,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26990] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26743] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 16, + ACTIONS(2554), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95770,7 +95755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2591), 26, + ACTIONS(2556), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95797,12 +95782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27057] = 7, + [26810] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2558), 1, anon_sym_EQ, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -95810,7 +95795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2595), 10, + ACTIONS(2560), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -95855,10 +95840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27122] = 3, + [26875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 16, + ACTIONS(2562), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95875,7 +95860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2599), 33, + ACTIONS(2564), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95909,10 +95894,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27179] = 3, + [26932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 16, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2085), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2566), 1, + sym_identifier, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1349), 1, + sym__declaration_specifiers, + STATE(1842), 1, + sym_parameter_declaration, + STATE(1876), 1, + sym_variadic_parameter, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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, + [27023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2568), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95929,7 +95985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2603), 33, + ACTIONS(2570), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95963,22 +96019,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27236] = 8, + [27080] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2572), 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(2574), 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, + [27147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 16, + ACTIONS(2576), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95995,7 +96110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2607), 26, + ACTIONS(2578), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96022,21 +96137,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27303] = 6, + [27214] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(2580), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym___attribute__, + ACTIONS(2592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2595), 1, + anon_sym___declspec, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2603), 1, + sym_primitive_type, + ACTIONS(2606), 1, + anon_sym_enum, ACTIONS(2609), 1, + anon_sym_struct, + ACTIONS(2612), 1, + anon_sym_union, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1486), 1, + sym__declaration_specifiers, + STATE(844), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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(2583), 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(2586), 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, + [27303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, sym_identifier, - STATE(845), 2, + STATE(846), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2386), 13, + ACTIONS(2382), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96050,7 +96235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2384), 27, + ACTIONS(2380), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96081,18 +96266,18 @@ static const uint16_t ts_small_parse_table[] = { [27365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2617), 1, sym_identifier, - STATE(843), 2, + STATE(846), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1812), 5, + ACTIONS(2620), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2396), 13, + ACTIONS(2395), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96106,7 +96291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2394), 27, + ACTIONS(2393), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96137,18 +96322,18 @@ static const uint16_t ts_small_parse_table[] = { [27427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2623), 1, sym_identifier, STATE(845), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2616), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2375), 13, + ACTIONS(2404), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96162,7 +96347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2373), 27, + ACTIONS(2402), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96193,9 +96378,9 @@ static const uint16_t ts_small_parse_table[] = { [27489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -96203,7 +96388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96250,9 +96435,9 @@ static const uint16_t ts_small_parse_table[] = { [27553] = 5, ACTIONS(3), 1, sym_comment, - STATE(844), 1, + STATE(847), 1, sym_string_literal, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -96304,63 +96489,9 @@ static const uint16_t ts_small_parse_table[] = { [27612] = 5, ACTIONS(3), 1, sym_comment, - STATE(848), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2623), 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(2619), 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(2621), 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, - [27671] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(844), 1, + STATE(847), 1, sym_string_literal, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -96409,20 +96540,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27730] = 7, + [27671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2625), 1, anon_sym_EQ, - STATE(844), 1, + STATE(847), 1, sym_string_literal, - ACTIONS(1812), 5, + ACTIONS(1785), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2628), 10, + ACTIONS(2627), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96465,6 +96596,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [27734] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(852), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2633), 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(2629), 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(2631), 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, [27793] = 17, ACTIONS(3), 1, sym_comment, @@ -96486,22 +96671,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1507), 1, + STATE(1517), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96551,22 +96736,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1529), 1, + STATE(1508), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96616,22 +96801,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1517), 1, + STATE(1522), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96660,10 +96845,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28039] = 3, + [28039] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 14, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(1074), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1504), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(867), 7, + sym__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, + [28121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2410), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96678,7 +96928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2406), 32, + ACTIONS(2412), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96711,10 +96961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [28093] = 3, + [28175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 14, + ACTIONS(2406), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96729,7 +96979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2402), 32, + ACTIONS(2408), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96762,71 +97012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [28147] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1521), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, [28229] = 17, ACTIONS(3), 1, sym_comment, @@ -96848,22 +97033,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1503), 1, + STATE(1527), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96913,22 +97098,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1507), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96978,22 +97163,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1512), 1, + STATE(1533), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97043,22 +97228,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1513), 1, + STATE(1505), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97108,22 +97293,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1531), 1, + STATE(1532), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(863), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97173,85 +97358,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1074), 1, sym__type_specifier, - STATE(1109), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1509), 1, + STATE(1511), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(863), 7, - sym__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, - [28721] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(1072), 1, - sym__type_specifier, - STATE(1109), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(868), 7, + STATE(867), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97280,14 +97402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28800] = 8, + [28721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1983), 1, + ACTIONS(1979), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97295,7 +97417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97335,14 +97457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28863] = 8, + [28784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1974), 1, + ACTIONS(1973), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97350,7 +97472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97390,32 +97512,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28926] = 3, + [28847] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2630), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(1062), 1, + sym__type_specifier, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(872), 7, + sym__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, @@ -97425,29 +97564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [28979] = 8, + 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, + [28926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1981), 1, + ACTIONS(1977), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97455,7 +97590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97495,70 +97630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29042] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym___attribute__, - ACTIONS(2647), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2650), 1, - anon_sym___declspec, - ACTIONS(2636), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(868), 7, - sym__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(2638), 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(2641), 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(2634), 11, - anon_sym___based, - 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, - [29107] = 8, + [28989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1970), 1, + ACTIONS(1983), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97566,7 +97645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97606,14 +97685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29170] = 8, + [29052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(2636), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97621,7 +97700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97654,21 +97733,21 @@ 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_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29233] = 8, + [29115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(2653), 1, + ACTIONS(1985), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97676,7 +97755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97709,21 +97788,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [29178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym___attribute__, + ACTIONS(2651), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2654), 1, + anon_sym___declspec, + ACTIONS(2640), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(872), 7, + sym__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(2642), 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(2645), 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(2638), 11, + anon_sym___based, + 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, + [29243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2657), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, [29296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(1979), 1, + ACTIONS(1981), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97731,7 +97916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97771,58 +97956,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29359] = 18, + [29359] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2659), 1, - anon_sym_AMP_AMP, - ACTIONS(2661), 1, - anon_sym_PIPE, - ACTIONS(2663), 1, - anon_sym_CARET, - ACTIONS(2665), 1, - anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2671), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2673), 2, + ACTIONS(2665), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2657), 3, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 18, + ACTIONS(2554), 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(2556), 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, @@ -97835,61 +98013,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29441] = 20, + [29427] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2659), 1, - anon_sym_AMP_AMP, - ACTIONS(2661), 1, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 9, + aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(2663), 1, anon_sym_CARET, - ACTIONS(2665), 1, anon_sym_AMP, - ACTIONS(2679), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2556), 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, - ACTIONS(2681), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, - STATE(819), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, + [29493] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2677), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2657), 3, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2675), 16, + ACTIONS(2554), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 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, @@ -97901,61 +98128,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29527] = 20, + [29565] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2659), 1, - anon_sym_AMP_AMP, - ACTIONS(2661), 1, - anon_sym_PIPE, - ACTIONS(2663), 1, - anon_sym_CARET, - ACTIONS(2665), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2681), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2657), 3, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2683), 16, + ACTIONS(2554), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 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, @@ -97967,40 +98188,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29613] = 11, + [29639] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + ACTIONS(2673), 1, + anon_sym_AMP, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2673), 2, + ACTIONS(2665), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2657), 3, + ACTIONS(2667), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 7, + ACTIONS(2554), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2556), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98008,10 +98237,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98024,12 +98249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29681] = 7, + [29715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(2675), 1, anon_sym_EQ, - STATE(771), 1, + STATE(774), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98037,7 +98262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2689), 10, + ACTIONS(2677), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98077,49 +98302,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [29741] = 16, + [29775] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2663), 1, - anon_sym_CARET, - ACTIONS(2665), 1, + ACTIONS(2673), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(2679), 1, + anon_sym_CARET, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2605), 3, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2554), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2657), 3, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98139,58 +98364,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29819] = 17, + [29853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2661), 1, - anon_sym_PIPE, - ACTIONS(2663), 1, - anon_sym_CARET, - ACTIONS(2665), 1, + ACTIONS(2673), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2687), 1, + anon_sym_AMP_AMP, + ACTIONS(2689), 1, + anon_sym_PIPE, + ACTIONS(2691), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2657), 3, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 19, + ACTIONS(2681), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98202,53 +98430,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29899] = 13, + [29939] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + ACTIONS(2673), 1, + anon_sym_AMP, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2687), 1, + anon_sym_AMP_AMP, + ACTIONS(2689), 1, + anon_sym_PIPE, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2554), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2669), 2, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2667), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2657), 3, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2607), 21, + ACTIONS(2556), 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_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98261,38 +98494,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29971] = 9, + [30021] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + ACTIONS(2673), 1, + anon_sym_AMP, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2687), 1, + anon_sym_AMP_AMP, + ACTIONS(2689), 1, + anon_sym_PIPE, + ACTIONS(2691), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2657), 3, + ACTIONS(2661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2667), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2695), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 11, + ACTIONS(2693), 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, + [30107] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2673), 1, + anon_sym_AMP, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2689), 1, + anon_sym_PIPE, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 2, aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(2665), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2667), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98300,10 +98611,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98316,30 +98623,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30035] = 10, + [30187] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2657), 3, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 9, + ACTIONS(2554), 11, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -98348,7 +98654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2556), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98372,55 +98678,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30101] = 14, + [30251] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + ACTIONS(2673), 1, + anon_sym_AMP, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2687), 1, + anon_sym_AMP_AMP, + ACTIONS(2689), 1, + anon_sym_PIPE, + ACTIONS(2691), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2657), 3, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2607), 19, + ACTIONS(2697), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98432,61 +98744,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30175] = 20, + [30337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2659), 1, + ACTIONS(2699), 1, + anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2707), 1, anon_sym_AMP_AMP, - ACTIONS(2661), 1, + ACTIONS(2709), 1, anon_sym_PIPE, - ACTIONS(2663), 1, + ACTIONS(2711), 1, anon_sym_CARET, - ACTIONS(2665), 1, + ACTIONS(2713), 1, anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2681), 1, + ACTIONS(2723), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2667), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2673), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2693), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2657), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2691), 16, + ACTIONS(2697), 16, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98497,56 +98809,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30261] = 15, + [30422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2665), 1, - anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2655), 2, + ACTIONS(2703), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2671), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2673), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2657), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2605), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2607), 19, + ACTIONS(2556), 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_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, @@ -98558,59 +98863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2697), 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(2695), 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_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [30388] = 3, + [30485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 14, + ACTIONS(2550), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98625,7 +98881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2522), 29, + ACTIONS(2552), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -98655,55 +98911,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [30439] = 20, + [30536] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2701), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2703), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 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(2703), 1, + ACTIONS(2556), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___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, + [30601] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_PIPE_PIPE, ACTIONS(2707), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2709), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(2711), 1, + anon_sym_CARET, + ACTIONS(2713), 1, anon_sym_AMP, - ACTIONS(2721), 1, + ACTIONS(2723), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2683), 16, + ACTIONS(2681), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -98720,38 +99031,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30524] = 10, + [30686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2701), 3, + ACTIONS(2721), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 8, + ACTIONS(2554), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2556), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -98775,52 +99087,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30589] = 11, + [30753] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + ACTIONS(2695), 1, + anon_sym_EQ, + ACTIONS(2705), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2707), 1, + anon_sym_AMP_AMP, + ACTIONS(2709), 1, + anon_sym_PIPE, + ACTIONS(2711), 1, + anon_sym_CARET, + ACTIONS(2713), 1, + anon_sym_AMP, + ACTIONS(2723), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2715), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2717), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(2719), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2693), 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, @@ -98831,43 +99152,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30656] = 13, + [30838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 4, + ACTIONS(2554), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2607), 21, + ACTIONS(2556), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -98889,46 +99210,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30727] = 14, + [30909] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 4, + ACTIONS(2554), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -98948,47 +99269,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30800] = 15, + [30982] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2711), 1, + ACTIONS(2713), 1, anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2605), 3, + ACTIONS(2554), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99008,48 +99329,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30875] = 16, + [31057] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, - anon_sym_CARET, ACTIONS(2711), 1, + anon_sym_CARET, + ACTIONS(2713), 1, anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, + ACTIONS(2554), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99069,49 +99390,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30952] = 17, + [31134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2727), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2565), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2725), 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_LBRACK, - ACTIONS(2605), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [31185] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2554), 1, anon_sym_EQ, - ACTIONS(2707), 1, - anon_sym_PIPE, ACTIONS(2709), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(2711), 1, + anon_sym_CARET, + ACTIONS(2713), 1, anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99131,59 +99500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31031] = 18, + [31264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(2558), 1, anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_AMP_AMP, - ACTIONS(2707), 1, - anon_sym_PIPE, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2699), 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(2701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 18, - 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, + ACTIONS(2560), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99194,10 +99516,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31112] = 3, + ACTIONS(1959), 13, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1953), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [31319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 14, + ACTIONS(2542), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99212,7 +99568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2599), 29, + ACTIONS(2544), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -99242,61 +99598,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31163] = 20, + [31370] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, + ACTIONS(2554), 1, anon_sym_EQ, - ACTIONS(2703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, - anon_sym_AMP_AMP, ACTIONS(2707), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2709), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(2711), 1, + anon_sym_CARET, + ACTIONS(2713), 1, anon_sym_AMP, - ACTIONS(2721), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, + ACTIONS(2701), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2719), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2701), 3, + ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2675), 16, + ACTIONS(2556), 18, 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, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99307,24 +99661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31248] = 5, + [31451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, - anon_sym_EQ, - ACTIONS(2595), 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(1959), 13, - aux_sym_preproc_elif_token1, + ACTIONS(2562), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99337,12 +99677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2564), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99351,16 +99693,26 @@ 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, sym_identifier, - [31303] = 3, + [31502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 14, + ACTIONS(2568), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99375,7 +99727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2579), 29, + ACTIONS(2570), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -99385,81 +99737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_identifier, - [31354] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, - anon_sym_AMP_AMP, - ACTIONS(2707), 1, - anon_sym_PIPE, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - ACTIONS(2721), 1, - anon_sym_QMARK, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2699), 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_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2691), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99470,28 +99753,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31439] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_identifier, + [31553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(819), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 3, + ACTIONS(2735), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2554), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99500,19 +99786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 23, + ACTIONS(2556), 22, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99524,15 +99808,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31502] = 3, + sym_identifier, + [31613] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2731), 1, + anon_sym_LBRACK, + STATE(964), 1, + sym_argument_list, + ACTIONS(2733), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2735), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2554), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99541,22 +99839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2603), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2556), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99568,43 +99861,37 @@ 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, sym_identifier, - [31553] = 11, + [31675] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2727), 3, + ACTIONS(2572), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 22, + ACTIONS(2574), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99627,43 +99914,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31619] = 13, + [31735] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(2739), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2727), 3, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 4, + ACTIONS(2554), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2607), 20, + ACTIONS(2556), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99672,6 +99955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99684,59 +99969,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31689] = 20, + [31801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(1971), 1, anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, + ACTIONS(1975), 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(1959), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2747), 1, anon_sym_CARET, - ACTIONS(2749), 1, anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_QMARK, - STATE(923), 1, - sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1953), 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, + [31855] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2731), 1, + anon_sym_LBRACK, + STATE(964), 1, + sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, + ACTIONS(2739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2739), 2, + ACTIONS(2745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2727), 3, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2675), 15, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 20, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99748,14 +100075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31773] = 9, + [31925] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -99763,13 +100090,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2727), 3, + ACTIONS(2576), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99778,7 +100104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 22, + ACTIONS(2578), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99801,59 +100127,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31835] = 20, + [31985] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(2739), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2727), 3, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2691), 15, + ACTIONS(2554), 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(2556), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99865,56 +100181,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31919] = 18, + [32049] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_AMP, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2739), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2727), 3, + ACTIONS(2536), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 17, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2538), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99927,29 +100233,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31999] = 10, + [32109] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2727), 3, + ACTIONS(2526), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99958,7 +100259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 22, + ACTIONS(2528), 24, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99980,48 +100281,49 @@ 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, sym_identifier, - [32063] = 15, + [32167] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, + ACTIONS(2739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2739), 2, + ACTIONS(2745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2751), 2, + ACTIONS(2747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2605), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2727), 3, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 18, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100040,59 +100342,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32137] = 20, + [32239] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, - anon_sym_CARET, ACTIONS(2749), 1, anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, + ACTIONS(2739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2739), 2, + ACTIONS(2745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2751), 2, + ACTIONS(2747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2727), 3, + ACTIONS(2554), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2683), 15, + ACTIONS(2556), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100104,46 +100401,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32221] = 14, + [32313] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2751), 1, + anon_sym_CARET, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_EQ, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, + ACTIONS(2739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2739), 2, + ACTIONS(2745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2751), 2, + ACTIONS(2747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2727), 3, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2607), 18, + ACTIONS(2556), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100162,14 +100461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32293] = 8, + [32389] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2683), 1, + anon_sym_EQ, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2751), 1, + anon_sym_CARET, + ACTIONS(2753), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2755), 1, + anon_sym_AMP_AMP, + ACTIONS(2757), 1, + anon_sym_PIPE, + ACTIONS(2759), 1, + anon_sym_QMARK, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -100177,32 +100490,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2605), 13, + ACTIONS(2739), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2745), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_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(2607), 22, + ACTIONS(2681), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100214,14 +100525,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32353] = 8, + [32473] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2695), 1, + anon_sym_EQ, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2751), 1, + anon_sym_CARET, + ACTIONS(2753), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2755), 1, + anon_sym_AMP_AMP, + ACTIONS(2757), 1, + anon_sym_PIPE, + ACTIONS(2759), 1, + anon_sym_QMARK, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -100229,32 +100554,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 13, + ACTIONS(2739), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2745), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_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(2587), 22, + ACTIONS(2693), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100266,14 +100589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32413] = 8, + [32557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -100281,7 +100604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2581), 13, + ACTIONS(2546), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100295,7 +100618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2583), 22, + ACTIONS(2548), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100318,14 +100641,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32473] = 8, + [32617] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2554), 1, + anon_sym_EQ, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2751), 1, + anon_sym_CARET, + ACTIONS(2757), 1, + anon_sym_PIPE, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -100333,31 +100664,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2589), 13, + ACTIONS(2739), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2745), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_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(2591), 22, + ACTIONS(2556), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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, @@ -100370,56 +100702,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32533] = 17, + [32695] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2699), 1, anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2745), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, - anon_sym_CARET, ACTIONS(2749), 1, anon_sym_AMP, - STATE(923), 1, + ACTIONS(2751), 1, + anon_sym_CARET, + ACTIONS(2753), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2755), 1, + anon_sym_AMP_AMP, + ACTIONS(2757), 1, + anon_sym_PIPE, + ACTIONS(2759), 1, + anon_sym_QMARK, + STATE(964), 1, sym_argument_list, - ACTIONS(2725), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 2, + ACTIONS(2739), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2739), 2, + ACTIONS(2745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2751), 2, + ACTIONS(2747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2727), 3, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 18, + ACTIONS(2697), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100431,92 +100766,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32611] = 5, + [32779] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(2554), 1, anon_sym_EQ, - ACTIONS(1972), 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(1959), 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(1953), 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, - [32665] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(923), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2751), 1, + anon_sym_CARET, + ACTIONS(2755), 1, + anon_sym_AMP_AMP, + ACTIONS(2757), 1, + anon_sym_PIPE, + STATE(964), 1, sym_argument_list, + ACTIONS(2733), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2559), 13, + ACTIONS(2739), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2741), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2745), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_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(2561), 24, + ACTIONS(2556), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - anon_sym_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, @@ -100528,25 +100827,11 @@ 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, sym_identifier, - [32723] = 8, + [32859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(923), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2569), 13, + ACTIONS(2418), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100560,17 +100845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2571), 22, + ACTIONS(2420), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100582,55 +100869,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [32783] = 16, + [32908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_AMP, - STATE(923), 1, - sym_argument_list, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2725), 2, + ACTIONS(2470), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2737), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2739), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2607), 18, + 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(2472), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100642,11 +100915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [32859] = 3, + [32957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 13, + ACTIONS(2474), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100660,7 +100937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2498), 28, + ACTIONS(2476), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100689,56 +100966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [32908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32957] = 3, + [33006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 13, + ACTIONS(2514), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100752,7 +100983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2478), 28, + ACTIONS(2516), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100781,10 +101012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33006] = 3, + [33055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2518), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100798,7 +101029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2474), 28, + ACTIONS(2520), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100827,58 +101058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2757), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2755), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, [33104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 1, + ACTIONS(2763), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 40, + ACTIONS(2761), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -100922,9 +101107,9 @@ static const uint16_t ts_small_parse_table[] = { [33153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 40, + ACTIONS(2765), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -100968,145 +101153,7 @@ static const uint16_t ts_small_parse_table[] = { [33202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2518), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2420), 13, + ACTIONS(2486), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101120,7 +101167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2422), 28, + ACTIONS(2488), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101149,10 +101196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33398] = 3, + [33251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 13, + ACTIONS(2506), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101166,7 +101213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2510), 28, + ACTIONS(2508), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101195,12 +101242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33447] = 3, + [33300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2771), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 40, + ACTIONS(2769), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101241,148 +101288,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2490), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33545] = 3, + [33349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 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(2418), 28, - anon_sym_COMMA, + ACTIONS(2775), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + aux_sym_preproc_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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33594] = 3, + [33398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2454), 28, - anon_sym_COMMA, + ACTIONS(2779), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2777), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + aux_sym_preproc_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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33643] = 3, + [33447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 13, + ACTIONS(2434), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101396,7 +101397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2426), 28, + ACTIONS(2436), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101425,12 +101426,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33692] = 3, + [33496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 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(2416), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [33545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2783), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 40, + ACTIONS(2781), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101471,10 +101518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33741] = 3, + [33594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(2478), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101488,7 +101535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2458), 28, + ACTIONS(2480), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101517,10 +101564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33790] = 3, + [33643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 13, + ACTIONS(2510), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101534,7 +101581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2442), 28, + ACTIONS(2512), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101563,10 +101610,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33839] = 3, + [33692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2785), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(2490), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101580,7 +101673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2414), 28, + ACTIONS(2492), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101609,10 +101702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33888] = 3, + [33790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 13, + ACTIONS(2450), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101626,7 +101719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2434), 28, + ACTIONS(2452), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101655,10 +101748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33937] = 3, + [33839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 13, + ACTIONS(2430), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101672,7 +101765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2514), 28, + ACTIONS(2432), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101701,10 +101794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33986] = 3, + [33888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(2446), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101718,7 +101811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2462), 28, + ACTIONS(2448), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101747,10 +101840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34035] = 3, + [33937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(2438), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101764,7 +101857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2466), 28, + ACTIONS(2440), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101793,56 +101886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34133] = 3, + [33986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 13, + ACTIONS(2502), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101856,7 +101903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2410), 28, + ACTIONS(2504), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101885,23 +101932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34182] = 5, + [34035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - anon_sym_EQ, - ACTIONS(2628), 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(1959), 12, + ACTIONS(2422), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101914,7 +101948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 18, + anon_sym_EQ, + ACTIONS(2424), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101928,17 +101963,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34235] = 3, + [34084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(1506), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 40, + ACTIONS(1504), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101979,10 +102024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34284] = 3, + [34133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 13, + ACTIONS(2426), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101996,7 +102041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2502), 28, + ACTIONS(2428), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102025,56 +102070,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34333] = 3, + [34182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2625), 1, + anon_sym_EQ, + ACTIONS(2627), 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(1959), 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(1953), 18, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [34235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2482), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2484), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [34382] = 3, + [34284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(2458), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102088,7 +102181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2494), 28, + ACTIONS(2460), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102117,58 +102210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34480] = 3, + [34333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 40, + ACTIONS(1426), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102209,10 +102256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34529] = 3, + [34382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 13, + ACTIONS(2442), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102226,7 +102273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2506), 28, + ACTIONS(2444), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102255,10 +102302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34578] = 3, + [34431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 13, + ACTIONS(2462), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102272,7 +102319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2486), 28, + ACTIONS(2464), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102301,12 +102348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34627] = 3, + [34480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2791), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 40, + ACTIONS(2789), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102347,12 +102394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34676] = 3, + [34529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2795), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 40, + ACTIONS(2793), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102393,12 +102440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34725] = 3, + [34578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(2799), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 40, + ACTIONS(2797), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102439,10 +102486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34774] = 3, + [34627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 13, + ACTIONS(2454), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102456,7 +102503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2438), 28, + ACTIONS(2456), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102485,10 +102532,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34823] = 3, + [34676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1464), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 13, + ACTIONS(2522), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102502,7 +102595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2446), 28, + ACTIONS(2524), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102531,10 +102624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34872] = 3, + [34774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(2498), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102548,7 +102641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2470), 28, + ACTIONS(2500), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102577,10 +102670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34921] = 3, + [34823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 13, + ACTIONS(2494), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102594,7 +102687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2450), 28, + ACTIONS(2496), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102623,7 +102716,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34970] = 3, + [34872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2801), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34921] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1490), 1, @@ -102669,58 +102808,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35019] = 3, + [34970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2430), 28, - anon_sym_COMMA, + ACTIONS(2807), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2805), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + aux_sym_preproc_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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35068] = 3, + [35019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1482), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 40, + ACTIONS(1480), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102761,77 +102900,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35117] = 15, + [35068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2607), 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, - [35188] = 3, + ACTIONS(1444), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1442), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35117] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2813), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_field_declaration_list, + STATE(1086), 1, + sym_attribute_specifier, + ACTIONS(2811), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2817), 32, + anon_sym_COLON, + ACTIONS(2809), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -102857,32 +102993,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35235] = 9, + [35172] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 13, + ACTIONS(2815), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2817), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2554), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -102891,7 +103026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 19, + ACTIONS(2556), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102911,12 +103046,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35294] = 3, + [35235] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2683), 1, + anon_sym_EQ, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2823), 1, + anon_sym_AMP_AMP, + ACTIONS(2825), 1, + anon_sym_PIPE, + ACTIONS(2827), 1, + anon_sym_CARET, + ACTIONS(2829), 1, + anon_sym_AMP, + ACTIONS(2839), 1, + anon_sym_QMARK, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2681), 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, + [35318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2769), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35365] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2813), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_field_declaration_list, + STATE(1111), 1, + sym_attribute_specifier, + ACTIONS(2843), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2841), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [35420] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + ACTIONS(2091), 1, + anon_sym_STAR, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(2853), 1, + anon_sym_LBRACK, + STATE(1310), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1499), 1, + sym__declarator, + STATE(1621), 1, + sym__abstract_declarator, + STATE(1653), 1, + sym_parameter_list, + STATE(2001), 1, + sym_ms_based_modifier, + ACTIONS(2847), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2851), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1165), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1189), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2849), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1650), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1537), 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, + [35499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2763), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 38, + ACTIONS(2761), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102955,12 +103304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35341] = 3, + [35546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 38, + ACTIONS(1464), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102999,12 +103348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35388] = 3, + [35593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1490), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 38, + ACTIONS(1488), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103043,12 +103392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35435] = 3, + [35640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(1482), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 38, + ACTIONS(1480), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103087,12 +103436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35482] = 3, + [35687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 38, + ACTIONS(1426), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103131,26 +103480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35529] = 6, + [35734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, - anon_sym___attribute__, - ACTIONS(2828), 2, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2831), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2823), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2821), 29, + ACTIONS(2765), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -103178,100 +103524,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35582] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2085), 1, - anon_sym_LPAREN2, - ACTIONS(2087), 1, - anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LBRACK, - STATE(1309), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1484), 1, - sym__declarator, - STATE(1610), 1, - sym__abstract_declarator, - STATE(1656), 1, - sym_parameter_list, - STATE(2164), 1, - sym_ms_based_modifier, - ACTIONS(2835), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2839), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1169), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1186), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2837), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1641), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1545), 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, - [35661] = 12, + [35781] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, + ACTIONS(2817), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 6, + ACTIONS(2554), 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(2607), 19, + ACTIONS(2556), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103291,12 +103575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35726] = 3, + [35842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(1444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 38, + ACTIONS(1442), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103335,58 +103619,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35773] = 21, + [35889] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2677), 1, - anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - ACTIONS(2843), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2845), 1, - anon_sym_AMP_AMP, - ACTIONS(2847), 1, - anon_sym_PIPE, - ACTIONS(2849), 1, - anon_sym_CARET, - ACTIONS(2851), 1, - anon_sym_AMP, - ACTIONS(2853), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, + ACTIONS(2546), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2675), 12, + anon_sym_EQ, + ACTIONS(2548), 19, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103397,51 +103669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35903] = 6, + [35948] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2859), 1, @@ -103488,72 +103716,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35956] = 3, + [36001] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36003] = 3, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2554), 1, + anon_sym_EQ, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2823), 1, + anon_sym_AMP_AMP, + ACTIONS(2825), 1, + anon_sym_PIPE, + ACTIONS(2827), 1, + anon_sym_CARET, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 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, + [36080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2813), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_field_declaration_list, + STATE(1114), 1, + sym_attribute_specifier, + ACTIONS(2869), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2867), 28, 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, @@ -103572,164 +103823,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36050] = 3, + [36135] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36097] = 3, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2554), 1, + anon_sym_EQ, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2825), 1, + anon_sym_PIPE, + ACTIONS(2827), 1, + anon_sym_CARET, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 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, + [36212] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2827), 1, + anon_sym_CARET, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 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, + [36287] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2554), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 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, + [36360] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 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, + [36431] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2556), 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, + [36500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36144] = 3, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 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(2556), 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, + [36559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36191] = 3, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2554), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2556), 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, + [36624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, + ACTIONS(2873), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2871), 32, 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, @@ -103752,12 +104256,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36238] = 3, + [36671] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2695), 1, + anon_sym_EQ, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(2821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2823), 1, + anon_sym_AMP_AMP, + ACTIONS(2825), 1, + anon_sym_PIPE, + ACTIONS(2827), 1, + anon_sym_CARET, + ACTIONS(2829), 1, + anon_sym_AMP, + ACTIONS(2839), 1, + anon_sym_QMARK, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2833), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2835), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2693), 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, + [36754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 38, + ACTIONS(2805), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103796,49 +104362,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36285] = 14, + [36801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, + ACTIONS(2526), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2809), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2805), 3, + anon_sym_EQ, + ACTIONS(2528), 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, + [36858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2536), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 17, + ACTIONS(2538), 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, @@ -103851,56 +104461,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36354] = 21, + [36917] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2685), 1, + ACTIONS(2699), 1, anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - ACTIONS(2843), 1, + ACTIONS(2821), 1, anon_sym_PIPE_PIPE, - ACTIONS(2845), 1, + ACTIONS(2823), 1, anon_sym_AMP_AMP, - ACTIONS(2847), 1, + ACTIONS(2825), 1, anon_sym_PIPE, - ACTIONS(2849), 1, + ACTIONS(2827), 1, anon_sym_CARET, - ACTIONS(2851), 1, + ACTIONS(2829), 1, anon_sym_AMP, - ACTIONS(2853), 1, + ACTIONS(2839), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, + ACTIONS(2815), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2807), 2, + ACTIONS(2831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2809), 2, + ACTIONS(2833), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2811), 2, + ACTIONS(2835), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2813), 2, + ACTIONS(2837), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2805), 3, + ACTIONS(2817), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2683), 12, + ACTIONS(2697), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -103913,30 +104523,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36437] = 11, + [37000] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, + ACTIONS(2572), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2605), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -103945,7 +104553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2607), 19, + ACTIONS(2574), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103965,28 +104573,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36500] = 3, + [37059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1506), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2630), 32, + ACTIONS(1504), 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, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, 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, @@ -104009,12 +104617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36547] = 3, + [37106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 38, + ACTIONS(2801), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104053,23 +104661,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36594] = 9, + [37153] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 13, + ACTIONS(2576), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104083,7 +104691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2591), 19, + ACTIONS(2578), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104103,75 +104711,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36653] = 16, + [37212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2797), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2879), 1, + anon_sym___attribute__, + ACTIONS(2882), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2885), 3, anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2877), 4, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(2851), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2605), 3, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 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, - [36726] = 7, + ACTIONS(2875), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37312] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2871), 1, + ACTIONS(2813), 1, anon_sym_LBRACE, - STATE(1033), 1, + STATE(1077), 1, sym_field_declaration_list, - STATE(1098), 1, + STATE(1097), 1, sym_attribute_specifier, - ACTIONS(2869), 7, + ACTIONS(2889), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104179,16 +104821,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2867), 28, + ACTIONS(2887), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [37367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2779), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2777), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, 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, @@ -104207,36 +104934,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36781] = 7, + [37461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(1035), 1, - sym_field_declaration_list, - STATE(1107), 1, - sym_attribute_specifier, - ACTIONS(2875), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2783), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2873), 28, + ACTIONS(2781), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, 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, @@ -104255,29 +104978,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36836] = 3, + [37508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2659), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2657), 32, 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, @@ -104300,12 +105026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36883] = 3, + [37555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2795), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 38, + ACTIONS(2793), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104344,18 +105070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36930] = 7, + [37602] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2871), 1, + ACTIONS(2813), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1064), 1, sym_field_declaration_list, - STATE(1083), 1, + STATE(1103), 1, sym_attribute_specifier, - ACTIONS(2879), 7, + ACTIONS(2893), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104363,7 +105089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2877), 28, + ACTIONS(2891), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -104392,314 +105118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [36985] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(2843), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2845), 1, - anon_sym_AMP_AMP, - ACTIONS(2847), 1, - anon_sym_PIPE, - ACTIONS(2849), 1, - anon_sym_CARET, - ACTIONS(2851), 1, - anon_sym_AMP, - ACTIONS(2853), 1, - anon_sym_QMARK, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2691), 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, - [37068] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2581), 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(2583), 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, - [37127] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_CARET, - ACTIONS(2851), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 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, - [37202] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2585), 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(2587), 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, - [37261] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2605), 1, - anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(2847), 1, - anon_sym_PIPE, - ACTIONS(2849), 1, - anon_sym_CARET, - ACTIONS(2851), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 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, - [37338] = 7, + [37657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_field_declaration_list, - STATE(1091), 1, - sym_attribute_specifier, - ACTIONS(2883), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2787), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2881), 28, + ACTIONS(2785), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, 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, @@ -104718,86 +105158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [37393] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2569), 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(2571), 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, - [37452] = 7, + [37704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_field_declaration_list, - STATE(1082), 1, - sym_attribute_specifier, - ACTIONS(2887), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2791), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2885), 28, + ACTIONS(2789), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, 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, @@ -104816,129 +105202,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [37507] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2559), 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(2561), 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, - [37564] = 10, + [37751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2897), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2805), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2605), 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(2607), 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, - [37625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 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, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(2895), 32, 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, @@ -104961,77 +105249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37672] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2605), 1, - anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(2845), 1, - anon_sym_AMP_AMP, - ACTIONS(2847), 1, - anon_sym_PIPE, - ACTIONS(2849), 1, - anon_sym_CARET, - ACTIONS(2851), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2807), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2809), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2811), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 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, - [37751] = 3, + [37797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 6, + ACTIONS(1909), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2889), 32, + ACTIONS(1907), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105064,13 +105292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37797] = 3, + [37843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 2, + ACTIONS(2408), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2400), 36, + ACTIONS(2406), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105107,12 +105335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37843] = 5, + [37889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(2675), 1, anon_sym_EQ, - ACTIONS(2689), 10, + ACTIONS(2677), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -105152,27 +105380,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [37893] = 3, + [37939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2412), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1907), 32, + anon_sym_LBRACE, + ACTIONS(2410), 36, 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, @@ -105195,7 +105423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37939] = 3, + [37985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1913), 6, @@ -105238,23 +105466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37985] = 3, + [38031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(2771), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2404), 36, + ACTIONS(2769), 36, + aux_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___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, @@ -105281,18 +105508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38031] = 3, + [38076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 2, + ACTIONS(2897), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2763), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(772), 1, + sym_string_literal, + ACTIONS(2899), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2895), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105323,13 +105552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38076] = 3, + [38125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 2, + ACTIONS(2791), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2759), 35, + ACTIONS(2789), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -105365,15 +105594,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38121] = 3, + [38170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1108), 1, + sym_attribute_specifier, + ACTIONS(2903), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 36, + anon_sym_COLON, + ACTIONS(2901), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [38219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2793), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -105407,15 +105680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38166] = 3, + [38264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, + ACTIONS(2763), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 36, + anon_sym_RBRACE, + ACTIONS(2761), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -105449,12 +105722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38211] = 3, + [38309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 1, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 36, + ACTIONS(1426), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105491,20 +105764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38256] = 5, + [38354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(1506), 1, anon_sym_LBRACK_LBRACK, - STATE(765), 1, - sym_string_literal, - ACTIONS(2893), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2889), 30, + ACTIONS(1504), 36, + aux_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__, @@ -105535,12 +105806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38305] = 3, + [38399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, + ACTIONS(1444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2755), 36, + ACTIONS(1442), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105577,12 +105848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38350] = 3, + [38444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, + ACTIONS(1482), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 36, + ACTIONS(1480), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105619,12 +105890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38395] = 3, + [38489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, + ACTIONS(1490), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 36, + ACTIONS(1488), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105661,12 +105932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38440] = 3, + [38534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(1466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 36, + ACTIONS(1464), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105703,15 +105974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38485] = 3, + [38579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2767), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 36, + anon_sym_RBRACE, + ACTIONS(2765), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -105745,13 +106016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38530] = 3, + [38624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 2, + ACTIONS(2771), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2799), 35, + ACTIONS(2769), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -105787,14 +106058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38575] = 5, + [38669] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1093), 1, + STATE(1112), 1, sym_attribute_specifier, - ACTIONS(2897), 7, + ACTIONS(2907), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105802,7 +106073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2895), 28, + ACTIONS(2905), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -105831,31 +106102,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [38624] = 5, + [38718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2785), 36, + aux_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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38763] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1090), 1, - sym_attribute_specifier, - ACTIONS(2901), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2909), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2911), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, + STATE(872), 7, + sym__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, + [38820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2899), 28, + ACTIONS(2761), 36, + aux_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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105874,32 +106230,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [38673] = 5, + [38865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2767), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2765), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - STATE(1088), 1, - sym_attribute_specifier, - ACTIONS(2905), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2903), 28, + ACTIONS(2805), 36, + aux_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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105918,13 +106314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [38722] = 3, + [38955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 36, + ACTIONS(2801), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105961,12 +106360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38767] = 3, + [39000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2795), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 36, + ACTIONS(2793), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106003,12 +106402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38812] = 3, + [39045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2791), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 36, + ACTIONS(2789), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106045,18 +106444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38857] = 3, + [39090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(2897), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1426), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(768), 1, + sym_string_literal, + ACTIONS(2899), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2895), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106087,12 +106488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38902] = 3, + [39139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2783), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 36, + ACTIONS(2781), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106129,15 +106530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38947] = 3, + [39184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(2779), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1418), 35, + ACTIONS(2777), 36, aux_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, @@ -106171,15 +106572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38992] = 3, + [39229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(2775), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1402), 35, + ACTIONS(2773), 36, aux_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, @@ -106213,20 +106614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39037] = 5, + [39274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(1428), 2, anon_sym_LBRACK_LBRACK, - STATE(767), 1, - sym_string_literal, - ACTIONS(2893), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2889), 30, + anon_sym_RBRACE, + ACTIONS(1426), 35, + 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__, @@ -106257,15 +106656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39086] = 3, + [39319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 2, + ACTIONS(2799), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1496), 35, + ACTIONS(2797), 36, aux_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, @@ -106299,13 +106698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39131] = 3, + [39364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, + ACTIONS(1506), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1488), 35, + ACTIONS(1504), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106341,13 +106740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39176] = 3, + [39409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1444), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1430), 35, + ACTIONS(1442), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106383,13 +106782,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39221] = 3, + [39454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 2, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2915), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2913), 25, + 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, + sym_primitive_type, + sym_identifier, + [39503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2795), 35, + ACTIONS(2785), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106425,35 +106868,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39266] = 9, + [39548] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2907), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2909), 5, + STATE(1105), 1, + sym_attribute_specifier, + ACTIONS(2922), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(868), 7, - sym__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_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2920), 28, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106462,8 +106910,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + sym_primitive_type, + sym_identifier, + [39597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1087), 1, + sym_attribute_specifier, + ACTIONS(2926), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2924), 28, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106473,13 +106946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [39323] = 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, + sym_primitive_type, + sym_identifier, + [39646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 2, + ACTIONS(2799), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2771), 35, + ACTIONS(2797), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106515,20 +106998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39368] = 5, + [39691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(1482), 2, anon_sym_LBRACK_LBRACK, - STATE(769), 1, - sym_string_literal, - ACTIONS(2893), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2889), 30, + anon_sym_RBRACE, + ACTIONS(1480), 35, + 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__, @@ -106559,13 +107040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39417] = 3, + [39736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 2, + ACTIONS(1490), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2767), 35, + ACTIONS(1488), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106601,31 +107082,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39462] = 5, + [39781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1094), 1, - sym_attribute_specifier, - ACTIONS(2913), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2775), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2911), 28, + anon_sym_RBRACE, + ACTIONS(2773), 35, + 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___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, @@ -106644,21 +107120,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [39511] = 5, + [39826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - STATE(772), 1, - sym_string_literal, - ACTIONS(2893), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2889), 30, + ACTIONS(2928), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2930), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1039), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(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, + [39883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2805), 35, + 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__, @@ -106689,14 +107214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39560] = 5, + [39928] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1077), 1, + STATE(1106), 1, sym_attribute_specifier, - ACTIONS(2917), 7, + ACTIONS(2934), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106704,7 +107229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2915), 28, + ACTIONS(2932), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106733,18 +107258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39609] = 3, + [39977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(2897), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(767), 1, + sym_string_literal, + ACTIONS(2899), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2895), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106775,14 +107302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39654] = 5, + [40026] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1080), 1, + STATE(1102), 1, sym_attribute_specifier, - ACTIONS(2921), 7, + ACTIONS(2938), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106790,7 +107317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2919), 28, + ACTIONS(2936), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106819,15 +107346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39703] = 3, + [40075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2779), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 36, + anon_sym_RBRACE, + ACTIONS(2777), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106861,26 +107388,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39748] = 3, + [40120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1100), 1, + sym_attribute_specifier, + ACTIONS(2942), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2940), 28, 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, @@ -106899,22 +107431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39793] = 3, + [40169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2897), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(771), 1, + sym_string_literal, + ACTIONS(2899), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2895), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106945,26 +107476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39838] = 3, + [40218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1081), 1, + sym_attribute_specifier, + ACTIONS(2946), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2944), 28, 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, @@ -106983,22 +107519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39883] = 3, + [40267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2897), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(770), 1, + sym_string_literal, + ACTIONS(2899), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2895), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107029,31 +107564,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39928] = 5, + [40316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1108), 1, - sym_attribute_specifier, - ACTIONS(2925), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2803), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2923), 28, + anon_sym_RBRACE, + ACTIONS(2801), 35, + 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___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, @@ -107072,32 +107602,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [39977] = 5, + [40361] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1104), 1, - sym_attribute_specifier, - ACTIONS(2929), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2948), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2950), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2927), 28, + STATE(872), 7, + sym__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___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, @@ -107107,41 +107654,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [40026] = 5, + [40418] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1100), 1, - sym_attribute_specifier, - ACTIONS(2933), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2952), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2954), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2931), 28, + STATE(1073), 7, + sym__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___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, @@ -107151,41 +107702,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [40075] = 5, + [40475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1097), 1, - sym_attribute_specifier, - ACTIONS(2937), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2783), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2935), 28, + anon_sym_RBRACE, + ACTIONS(2781), 35, + 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___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, @@ -107204,14 +107740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40124] = 3, + [40520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 2, + ACTIONS(1466), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2779), 35, + ACTIONS(1464), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107247,26 +107786,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40169] = 3, + [40565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1101), 1, + sym_attribute_specifier, + ACTIONS(2958), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2783), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2956), 28, 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, @@ -107285,30 +107829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40214] = 3, + [40614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1116), 1, + sym_attribute_specifier, + ACTIONS(2962), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2787), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2960), 28, 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, @@ -107327,21 +107873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40259] = 5, + [40663] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2943), 4, + ACTIONS(2968), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2941), 7, + ACTIONS(2966), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107349,7 +107892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2939), 25, + ACTIONS(2964), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107373,28 +107916,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [40308] = 3, + [40711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, + ACTIONS(2970), 1, + sym_identifier, + ACTIONS(2979), 1, + sym_primitive_type, + STATE(1090), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2977), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2973), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2775), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2975), 23, 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107412,33 +107962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40353] = 5, + [40763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(2983), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(770), 1, - sym_string_literal, - ACTIONS(2893), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2889), 30, + anon_sym_COLON, + ACTIONS(2981), 29, 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, @@ -107457,78 +108002,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40402] = 9, + [40807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2946), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2948), 5, + ACTIONS(2987), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1048), 7, - sym__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, - [40459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2757), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2755), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2985), 29, 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, @@ -107547,78 +108043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40504] = 9, + [40851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2950), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2952), 5, + ACTIONS(2991), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1076), 7, - sym__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, - [40561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2791), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2989), 29, 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, @@ -107637,49 +108084,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40606] = 9, + [40895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2954), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2956), 5, + ACTIONS(2995), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(868), 7, - sym__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_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2993), 29, anon_sym___extension__, - 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___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, @@ -107689,10 +108116,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40663] = 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, + sym_primitive_type, + sym_identifier, + [40939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 7, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2968), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2999), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107700,16 +108144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2958), 29, + ACTIONS(2997), 24, 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, @@ -107728,12 +108168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [40707] = 3, + [40987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 7, + ACTIONS(3003), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107741,7 +108180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2962), 29, + ACTIONS(3001), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107771,10 +108210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40751] = 3, + [41031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 7, + ACTIONS(3007), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107782,7 +108221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2966), 29, + ACTIONS(3005), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107812,10 +108251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40795] = 3, + [41075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 7, + ACTIONS(3011), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107823,7 +108262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2970), 29, + ACTIONS(3009), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107853,26 +108292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40839] = 6, + [41119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_LPAREN2, - STATE(1092), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1966), 4, + ACTIONS(2968), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1964), 6, + ACTIONS(3015), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1951), 24, + ACTIONS(3013), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107897,27 +108335,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [40889] = 3, + [41167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 7, + ACTIONS(2913), 1, + sym_primitive_type, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3020), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2977), 29, + ACTIONS(3017), 24, 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, @@ -107936,12 +108378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [40933] = 3, + [41217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 7, + ACTIONS(3025), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107949,7 +108390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2981), 29, + ACTIONS(3023), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107979,10 +108420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40977] = 3, + [41261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 7, + STATE(1094), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3031), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3029), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107990,16 +108438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2985), 29, + ACTIONS(3027), 24, 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, @@ -108018,19 +108462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41021] = 5, + [41309] = 5, ACTIONS(3), 1, sym_comment, - STATE(1105), 1, + STATE(1089), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2993), 4, + ACTIONS(3037), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2991), 7, + ACTIONS(3035), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108038,7 +108481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2989), 24, + ACTIONS(3033), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108063,10 +108506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41069] = 3, + [41357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 7, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2968), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3041), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108074,16 +108524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2995), 29, + ACTIONS(3039), 24, 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, @@ -108102,12 +108548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41113] = 3, + [41405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 7, + ACTIONS(3045), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108115,7 +108560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2999), 29, + ACTIONS(3043), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108145,10 +108590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41157] = 3, + [41449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 7, + ACTIONS(3049), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108156,7 +108601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3003), 29, + ACTIONS(3047), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108186,10 +108631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41201] = 3, + [41493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 7, + ACTIONS(3053), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108197,7 +108642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3007), 29, + ACTIONS(3051), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108227,10 +108672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41245] = 3, + [41537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 7, + ACTIONS(3057), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108238,7 +108683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3011), 29, + ACTIONS(3055), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108268,10 +108713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41289] = 3, + [41581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 7, + ACTIONS(3061), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108279,7 +108724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3015), 29, + ACTIONS(3059), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108309,17 +108754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41333] = 5, + [41625] = 3, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3021), 7, + ACTIONS(3065), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108327,43 +108765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3019), 24, - 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, - sym_identifier, - [41381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3025), 29, + ACTIONS(3063), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108393,10 +108795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41425] = 3, + [41669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 7, + ACTIONS(3069), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108404,7 +108806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3029), 29, + ACTIONS(3067), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108434,53 +108836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41469] = 5, + [41713] = 3, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3035), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3033), 24, - 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, - sym_identifier, - [41517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 7, + ACTIONS(3073), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108488,7 +108847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3037), 29, + ACTIONS(3071), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108518,10 +108877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41561] = 3, + [41757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 7, + ACTIONS(3077), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108529,7 +108888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3041), 29, + ACTIONS(3075), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108559,10 +108918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41605] = 3, + [41801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 7, + ACTIONS(3081), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108570,7 +108929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3045), 29, + ACTIONS(3079), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108600,10 +108959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41649] = 3, + [41845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 7, + ACTIONS(3085), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108611,7 +108970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2989), 29, + ACTIONS(3083), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108641,10 +109000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41693] = 3, + [41889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 7, + ACTIONS(3089), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108652,7 +109011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3049), 29, + ACTIONS(3087), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108682,112 +109041,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41737] = 5, + [41933] = 6, ACTIONS(3), 1, sym_comment, - STATE(1095), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3057), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3055), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3091), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3053), 24, - 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, - sym_identifier, - [41785] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1111), 1, + STATE(1079), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3063), 4, + ACTIONS(1969), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3061), 7, + ACTIONS(1967), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3059), 24, - 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, - sym_identifier, - [41833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - sym_primitive_type, - STATE(1069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2943), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3068), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3065), 24, + ACTIONS(1951), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108812,10 +109085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41883] = 3, + [41983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 7, + ACTIONS(3096), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108823,7 +109096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3071), 29, + ACTIONS(3094), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108853,53 +109126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41927] = 5, + [42027] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 4, + ACTIONS(3102), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3077), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3075), 24, - 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, - sym_identifier, - [41975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 7, + ACTIONS(3100), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108907,16 +109144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3079), 29, + ACTIONS(3098), 24, 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, @@ -108935,12 +109168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [42019] = 3, + [42075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 7, + ACTIONS(3106), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108948,7 +109180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3083), 29, + ACTIONS(3104), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108978,10 +109210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42063] = 3, + [42119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 7, + ACTIONS(3110), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108989,7 +109221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3087), 29, + ACTIONS(3108), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109019,55 +109251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42107] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - sym_identifier, - ACTIONS(3100), 1, - sym_primitive_type, - STATE(1103), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3098), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3094), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3096), 23, - 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, - [42159] = 3, + [42163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 7, + ACTIONS(3114), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109075,7 +109262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3102), 29, + ACTIONS(3112), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109105,17 +109292,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42203] = 5, + [42207] = 3, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3108), 7, + ACTIONS(1390), 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(1392), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109123,12 +109344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3106), 24, + ACTIONS(3116), 29, 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, @@ -109147,11 +109372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [42251] = 3, + [42295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 7, + ACTIONS(3100), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109159,7 +109385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3110), 29, + ACTIONS(3098), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109189,10 +109415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42295] = 3, + [42339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 7, + ACTIONS(3122), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109200,7 +109426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3114), 29, + ACTIONS(3120), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109230,85 +109456,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 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(1352), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, [42383] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1537), 1, + STATE(1546), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1264), 2, + STATE(1281), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1301), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109324,44 +109509,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42452] = 16, + [42452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3091), 1, + anon_sym_LPAREN2, + ACTIONS(3134), 1, + anon_sym_COMMA, + ACTIONS(3137), 1, + anon_sym_RPAREN, + STATE(1079), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1826), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1967), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1969), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1951), 24, + 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, + sym_identifier, + [42507] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1544), 1, + STATE(1542), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1281), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1301), 2, + STATE(1117), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2837), 3, + STATE(1276), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109377,44 +109608,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42521] = 16, + [42576] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1533), 1, + STATE(1542), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1116), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, STATE(1276), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + STATE(1303), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109430,44 +109661,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42590] = 16, + [42645] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1544), 1, + STATE(1541), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1115), 2, + STATE(1120), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1281), 2, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109483,34 +109714,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42659] = 9, + [42714] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3143), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_COMMA, - ACTIONS(3131), 1, - anon_sym_RPAREN, - STATE(1092), 1, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(1079), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1803), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1964), 2, + ACTIONS(1967), 2, + anon_sym_COMMA, anon_sym_STAR, + ACTIONS(3140), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1966), 4, + ACTIONS(1969), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1951), 24, + ACTIONS(1951), 23, 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, @@ -109529,7 +109758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42714] = 10, + [42766] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -109538,15 +109767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3134), 1, + ACTIONS(3150), 1, anon_sym_SEMI, - ACTIONS(2950), 2, + ACTIONS(2952), 2, anon_sym___based, sym_identifier, - ACTIONS(2952), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1076), 7, + STATE(1073), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109575,76 +109804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [42770] = 8, + [42822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym___attribute__, - ACTIONS(3143), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_COLON, - STATE(1113), 1, - sym_attribute_specifier, - STATE(1166), 1, - sym_enumerator_list, - ACTIONS(3138), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3091), 1, anon_sym_LPAREN2, + STATE(1079), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1967), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3136), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42822] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 1, - anon_sym_LPAREN2, - ACTIONS(3154), 1, - anon_sym_LBRACK, - STATE(1092), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, + ACTIONS(3152), 2, anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3147), 2, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1966), 4, + ACTIONS(1969), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1951), 23, + ACTIONS(1951), 24, 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, @@ -109663,7 +109847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42874] = 10, + [42872] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -109672,15 +109856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_SEMI, - ACTIONS(2950), 2, + ACTIONS(2952), 2, anon_sym___based, sym_identifier, - ACTIONS(2952), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1076), 7, + STATE(1073), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109709,28 +109893,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [42930] = 7, + [42928] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3161), 1, + anon_sym___attribute__, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_COLON, + STATE(1091), 1, + sym_attribute_specifier, + STATE(1166), 1, + sym_enumerator_list, + ACTIONS(3159), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1092), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3159), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1966), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 24, + ACTIONS(3157), 23, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -109761,15 +109946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3162), 1, + ACTIONS(3168), 1, anon_sym_SEMI, - ACTIONS(2950), 2, + ACTIONS(2952), 2, anon_sym___based, sym_identifier, - ACTIONS(2952), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1076), 7, + STATE(1073), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109807,15 +109992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3164), 1, + ACTIONS(3170), 1, anon_sym_SEMI, - ACTIONS(2950), 2, + ACTIONS(2952), 2, anon_sym___based, sym_identifier, - ACTIONS(2952), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1076), 7, + STATE(1073), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109853,15 +110038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3166), 1, + ACTIONS(3172), 1, anon_sym_SEMI, - ACTIONS(2950), 2, + ACTIONS(2952), 2, anon_sym___based, sym_identifier, - ACTIONS(2952), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1076), 7, + STATE(1073), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109890,36 +110075,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43148] = 11, + [43148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(3178), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 5, + ACTIONS(3180), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3182), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3184), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2554), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 16, + ACTIONS(2556), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -109930,112 +110122,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [43205] = 21, + [43211] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3172), 1, - anon_sym_SLASH, - ACTIONS(3174), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3176), 1, - anon_sym_AMP_AMP, ACTIONS(3178), 1, - anon_sym_PIPE, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, - anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_QMARK, - STATE(819), 1, + anon_sym_SLASH, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2683), 6, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2554), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2556), 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, - [43282] = 18, + [43276] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3172), 1, - anon_sym_SLASH, ACTIONS(3178), 1, - anon_sym_PIPE, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, + anon_sym_SLASH, + ACTIONS(3188), 1, anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(2554), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 9, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2556), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110043,45 +110222,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [43353] = 14, + [43343] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(2554), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3178), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3188), 1, + anon_sym_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, + anon_sym_CARET, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2605), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2607), 12, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2556), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110089,113 +110276,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [43416] = 21, + [43414] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3172), 1, - anon_sym_SLASH, - ACTIONS(3174), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3176), 1, - anon_sym_AMP_AMP, ACTIONS(3178), 1, - anon_sym_PIPE, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, + anon_sym_SLASH, + ACTIONS(3188), 1, anon_sym_AMP, ACTIONS(3192), 1, - anon_sym_QMARK, - STATE(819), 1, + anon_sym_CARET, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(2554), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2675), 6, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2556), 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, - [43493] = 19, + [43483] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(2554), 1, aux_sym_preproc_elif_token1, - ACTIONS(3172), 1, - anon_sym_SLASH, - ACTIONS(3176), 1, - anon_sym_AMP_AMP, ACTIONS(3178), 1, + anon_sym_SLASH, + ACTIONS(3188), 1, + anon_sym_AMP, + ACTIONS(3190), 1, anon_sym_PIPE, - ACTIONS(3180), 1, + ACTIONS(3192), 1, anon_sym_CARET, - ACTIONS(3182), 1, - anon_sym_AMP, - STATE(819), 1, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 8, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2556), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110204,27 +110384,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK, sym_identifier, - [43566] = 10, + [43556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(3178), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 7, + ACTIONS(2554), 7, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -110232,7 +110412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 16, + ACTIONS(2556), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110249,192 +110429,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [43621] = 15, + [43611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(2683), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3178), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3188), 1, + anon_sym_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, + anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3198), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2605), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2607), 10, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2681), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [43686] = 16, + [43688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(2695), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3178), 1, anon_sym_SLASH, - ACTIONS(3182), 1, + ACTIONS(3188), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, + anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3198), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 10, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2693), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [43753] = 17, + [43765] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(3204), 1, + anon_sym___attribute__, + STATE(1088), 1, + sym_attribute_specifier, + STATE(1180), 1, + sym_enumerator_list, + ACTIONS(3202), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2565), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3200), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(3172), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [43814] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2699), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3178), 1, anon_sym_SLASH, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, + ACTIONS(3188), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, + anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3198), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 9, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2697), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [43822] = 12, + [43891] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, + ACTIONS(3178), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2605), 5, + ACTIONS(2554), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 14, + ACTIONS(2556), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110449,168 +110686,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [43881] = 21, + [43950] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2693), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3172), 1, - anon_sym_SLASH, - ACTIONS(3174), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3176), 1, - anon_sym_AMP_AMP, ACTIONS(3178), 1, - anon_sym_PIPE, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, - anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_QMARK, - STATE(819), 1, + anon_sym_SLASH, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(2554), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3190), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2691), 6, + ACTIONS(2556), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [43958] = 21, + [44007] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3172), 1, - anon_sym_SLASH, - ACTIONS(3174), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3176), 1, - anon_sym_AMP_AMP, ACTIONS(3178), 1, - anon_sym_PIPE, - ACTIONS(3180), 1, - anon_sym_CARET, - ACTIONS(3182), 1, + anon_sym_SLASH, + ACTIONS(3188), 1, anon_sym_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, ACTIONS(3192), 1, - anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, ACTIONS(3196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3198), 1, + anon_sym_QMARK, + ACTIONS(3209), 1, aux_sym_preproc_elif_token1, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 2, + ACTIONS(3176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3186), 2, + ACTIONS(3180), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3188), 2, + ACTIONS(3182), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3190), 2, + ACTIONS(3184), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 6, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3207), 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, - [44035] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACE, - ACTIONS(3202), 1, - anon_sym___attribute__, - STATE(1106), 1, - sym_attribute_specifier, - STATE(1175), 1, - sym_enumerator_list, - ACTIONS(3200), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3198), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, [44084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3205), 1, + ACTIONS(3211), 1, anon_sym_typedef, - ACTIONS(2630), 30, + ACTIONS(2657), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110644,47 +110829,10 @@ static const uint16_t ts_small_parse_table[] = { [44126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3207), 30, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 2, + ACTIONS(3215), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3211), 30, + ACTIONS(3213), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110715,13 +110863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44206] = 3, + [44166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(2659), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1350), 30, + ACTIONS(3217), 1, + anon_sym_typedef, + ACTIONS(2657), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110752,38 +110901,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44246] = 12, + [44208] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2605), 4, + ACTIONS(2554), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 14, + ACTIONS(2556), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -110793,22 +110938,22 @@ 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, - [44304] = 20, + [44262] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -110817,25 +110962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110845,99 +110985,101 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2683), 6, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [44378] = 14, + anon_sym_QMARK, + [44332] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2607), 12, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2697), 6, 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, - [44440] = 20, + [44406] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, ACTIONS(3227), 1, anon_sym_PIPE, ACTIONS(3229), 1, anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110947,42 +111089,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2691), 6, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 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, - [44514] = 15, + anon_sym_QMARK, + [44474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3245), 1, + anon_sym_typedef, + ACTIONS(2657), 30, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44516] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2554), 1, + anon_sym_PIPE, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110992,55 +111178,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2607), 10, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [44578] = 20, + [44584] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, + ACTIONS(3221), 1, + anon_sym_SLASH, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111050,21 +111227,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 6, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 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, - [44652] = 4, + anon_sym_QMARK, + [44650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3247), 1, anon_sym_typedef, - ACTIONS(2630), 30, + ACTIONS(2657), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111095,13 +111279,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44694] = 3, + [44692] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [44756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3251), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2821), 30, + ACTIONS(3249), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111132,85 +111365,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44734] = 16, + [44796] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_PIPE, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2607), 10, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 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, - [44800] = 11, + [44858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1390), 30, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44898] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 4, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2554), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 16, + ACTIONS(2556), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111220,96 +111491,129 @@ 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, - [44856] = 17, + [44956] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_PIPE, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2607), 9, + ACTIONS(2556), 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, - [44924] = 17, + [45012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3253), 1, + anon_sym_typedef, + ACTIONS(2657), 30, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45054] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, ACTIONS(3227), 1, anon_sym_PIPE, ACTIONS(3229), 1, anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111319,24 +111623,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2607), 9, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2693), 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, - [44992] = 18, + [45128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, ACTIONS(3225), 1, anon_sym_AMP_AMP, @@ -111346,23 +111650,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111372,67 +111677,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2607), 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, - [45062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2681), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [45116] = 4, + [45202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(3255), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3245), 1, - anon_sym_typedef, - ACTIONS(2630), 30, + anon_sym_LBRACE, + ACTIONS(2875), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111463,31 +111724,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45158] = 4, + [45242] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3247), 1, - anon_sym_typedef, - ACTIONS(2630), 30, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + ACTIONS(2091), 1, + anon_sym_STAR, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(2853), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym__declarator, + STATE(1619), 1, + sym__abstract_declarator, + STATE(1653), 1, + sym_parameter_list, + STATE(2001), 1, + sym_ms_based_modifier, + ACTIONS(3257), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1650), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, 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, @@ -111496,27 +111772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45200] = 4, + [45305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(3263), 1, + anon_sym___attribute__, + STATE(1083), 1, + sym_attribute_specifier, + ACTIONS(3261), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3249), 1, - anon_sym_typedef, - ACTIONS(2630), 30, + ACTIONS(3259), 23, 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111534,95 +111809,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [45242] = 15, + [45348] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - STATE(923), 1, - sym_argument_list, - ACTIONS(2605), 2, + ACTIONS(3272), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP_AMP, + ACTIONS(3276), 1, anon_sym_PIPE, + ACTIONS(3278), 1, + anon_sym_CARET, + ACTIONS(3280), 1, anon_sym_AMP, + ACTIONS(3290), 1, + anon_sym_QMARK, + STATE(964), 1, + sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 9, + ACTIONS(2697), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [45305] = 14, + [45421] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - STATE(923), 1, + STATE(964), 1, sym_argument_list, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3259), 2, + ACTIONS(2554), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 11, + ACTIONS(2556), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111632,30 +111900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45366] = 20, + [45474] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3265), 1, + ACTIONS(3272), 1, anon_sym_PIPE_PIPE, - ACTIONS(3267), 1, + ACTIONS(3274), 1, anon_sym_AMP_AMP, - ACTIONS(3269), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3271), 1, + ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - ACTIONS(3275), 1, + ACTIONS(3290), 1, anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -111663,45 +111935,45 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2675), 5, + ACTIONS(3207), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [45439] = 5, + [45547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3296), 1, anon_sym___attribute__, - STATE(1089), 1, + STATE(1082), 1, sym_attribute_specifier, - ACTIONS(3279), 6, + ACTIONS(3294), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3277), 23, + ACTIONS(3292), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -111725,64 +111997,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [45482] = 3, + [45590] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3284), 30, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(3270), 1, + anon_sym_SLASH, + STATE(964), 1, + sym_argument_list, + ACTIONS(2733), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2735), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3268), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2556), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [45521] = 20, + [45645] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3265), 1, + ACTIONS(3272), 1, anon_sym_PIPE_PIPE, - ACTIONS(3267), 1, + ACTIONS(3274), 1, anon_sym_AMP_AMP, - ACTIONS(3269), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3271), 1, + ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - ACTIONS(3275), 1, + ACTIONS(3290), 1, anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -111790,70 +112070,98 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 5, + ACTIONS(2681), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [45594] = 15, + [45718] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2087), 1, - anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, - sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1495), 1, - sym__declarator, - STATE(1612), 1, - sym__abstract_declarator, - STATE(1656), 1, - sym_parameter_list, - STATE(2164), 1, - sym_ms_based_modifier, + ACTIONS(3270), 1, + anon_sym_SLASH, + STATE(964), 1, + sym_argument_list, + ACTIONS(2733), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2735), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3268), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(3288), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2556), 13, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1641), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + sym_identifier, + [45775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3299), 30, 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, @@ -111862,35 +112170,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45657] = 11, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - STATE(923), 1, + STATE(964), 1, sym_argument_list, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 15, + ACTIONS(3286), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3288), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111900,44 +112220,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45712] = 12, + [45875] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - STATE(923), 1, + STATE(964), 1, sym_argument_list, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3282), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2607), 13, + ACTIONS(3286), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3288), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111945,34 +112268,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [45769] = 20, + [45938] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2554), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3267), 1, - anon_sym_AMP_AMP, - ACTIONS(3269), 1, - anon_sym_PIPE, - ACTIONS(3271), 1, - anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - ACTIONS(3275), 1, - anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -111980,44 +112291,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2683), 5, + ACTIONS(2556), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [45842] = 16, + [46003] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3273), 1, + ACTIONS(3278), 1, + anon_sym_CARET, + ACTIONS(3280), 1, anon_sym_AMP, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -112025,50 +112342,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 9, + ACTIONS(2556), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [45907] = 17, + [46070] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3271), 1, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -112076,25 +112392,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 8, + ACTIONS(2556), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112103,21 +112419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [45974] = 5, + [46137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, + ACTIONS(3307), 1, anon_sym___attribute__, - STATE(1086), 1, + STATE(1096), 1, sym_attribute_specifier, - ACTIONS(3292), 6, + ACTIONS(3305), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3290), 23, + ACTIONS(3303), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -112141,74 +112457,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [46017] = 17, + [46180] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3269), 1, - anon_sym_PIPE, - ACTIONS(3271), 1, - anon_sym_CARET, - ACTIONS(3273), 1, - anon_sym_AMP, - STATE(923), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3257), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3259), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3261), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3263), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 8, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3272), 1, anon_sym_PIPE_PIPE, + ACTIONS(3274), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - sym_identifier, - [46084] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_AMP_AMP, - ACTIONS(3269), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3271), 1, + ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - STATE(923), 1, + ACTIONS(3290), 1, + anon_sym_QMARK, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -112216,97 +112486,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 7, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [46153] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - anon_sym_SLASH, - STATE(923), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3253), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 15, + ACTIONS(2693), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [46206] = 20, + [46253] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3270), 1, anon_sym_SLASH, - ACTIONS(3265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3267), 1, + ACTIONS(3274), 1, anon_sym_AMP_AMP, - ACTIONS(3269), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3271), 1, + ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3280), 1, anon_sym_AMP, - ACTIONS(3275), 1, - anon_sym_QMARK, - STATE(923), 1, + STATE(964), 1, sym_argument_list, ACTIONS(2733), 2, anon_sym_DASH_DASH, @@ -112314,104 +112535,68 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3251), 2, + ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 2, + ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3257), 2, + ACTIONS(3282), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 2, + ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 2, + ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3263), 2, + ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2691), 5, + ACTIONS(2556), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - sym_identifier, - [46279] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym___attribute__, - STATE(1084), 1, - sym_attribute_specifier, - ACTIONS(3299), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3297), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, sym_identifier, [46322] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(2845), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3310), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3312), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1515), 1, - sym__field_declarator, - STATE(2093), 1, + STATE(1483), 1, + sym__declarator, + STATE(2001), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1301), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1315), 2, + STATE(1319), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1537), 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, @@ -112425,39 +112610,39 @@ static const uint16_t ts_small_parse_table[] = { [46382] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(2845), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3310), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3312), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, - sym__field_declarator, - STATE(2093), 1, + STATE(1499), 1, + sym__declarator, + STATE(2001), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1188), 2, + STATE(1189), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1319), 2, + STATE(1323), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1537), 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, @@ -112471,39 +112656,39 @@ static const uint16_t ts_small_parse_table[] = { [46442] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1482), 1, - sym__declarator, - STATE(2164), 1, + STATE(1523), 1, + sym__field_declarator, + STATE(1994), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1301), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1317), 2, + STATE(1321), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1570), 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, @@ -112517,39 +112702,39 @@ static const uint16_t ts_small_parse_table[] = { [46502] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1495), 1, - sym__declarator, - STATE(2164), 1, + STATE(1523), 1, + sym__field_declarator, + STATE(1994), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1183), 2, + STATE(1187), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1323), 2, + STATE(1321), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1570), 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, @@ -112563,30 +112748,30 @@ static const uint16_t ts_small_parse_table[] = { [46562] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1519), 1, + STATE(1530), 1, sym__field_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1181), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -112609,34 +112794,34 @@ static const uint16_t ts_small_parse_table[] = { [46622] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1495), 1, + STATE(1490), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1301), 2, + STATE(1183), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1323), 2, + STATE(1322), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -112655,34 +112840,34 @@ static const uint16_t ts_small_parse_table[] = { [46682] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1484), 1, + STATE(1490), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1186), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1316), 2, + STATE(1322), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -112701,30 +112886,30 @@ static const uint16_t ts_small_parse_table[] = { [46742] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - STATE(1519), 1, + STATE(1524), 1, sym__field_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, - ACTIONS(2839), 2, + ACTIONS(2851), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1301), 2, + STATE(1185), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1318), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(2849), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -112747,14 +112932,12 @@ static const uint16_t ts_small_parse_table[] = { [46802] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -112763,31 +112946,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3314), 1, + ACTIONS(3320), 1, anon_sym_COMMA, - ACTIONS(3316), 1, - anon_sym_RPAREN, - STATE(819), 1, + ACTIONS(3322), 1, + anon_sym_RBRACE, + STATE(810), 1, sym_argument_list, - STATE(1799), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2567), 2, + STATE(1796), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112797,17 +112979,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [46877] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -112816,31 +112999,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3314), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3326), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - STATE(1734), 1, + STATE(1789), 1, aux_sym_argument_list_repeat1, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112850,17 +113032,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [46952] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -112869,31 +113052,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3320), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3328), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - STATE(1764), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2567), 2, + STATE(1824), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112903,17 +113085,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [47027] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -112922,31 +113105,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACE, - STATE(819), 1, + ACTIONS(3332), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - STATE(1778), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2567), 2, + STATE(1748), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112956,17 +113138,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47102] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47102] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -112975,25 +113158,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3334), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + STATE(1794), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113003,21 +113191,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3328), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [47173] = 22, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47177] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113026,31 +113211,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, - STATE(819), 1, + ACTIONS(3336), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - STATE(1784), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2567), 2, + STATE(1818), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113060,17 +113244,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47248] = 22, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47252] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113079,31 +113264,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3320), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3338), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - STATE(1776), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2567), 2, + STATE(1817), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113113,17 +113297,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47323] = 22, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47327] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113132,31 +113317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3314), 1, + ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3336), 1, - anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - STATE(1787), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113166,17 +113346,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47398] = 22, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3342), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47400] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113185,31 +113369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(3338), 1, - anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - STATE(1823), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113219,17 +113396,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47473] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3344), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [47471] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113238,27 +113420,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3346), 1, anon_sym_COMMA, - STATE(819), 1, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + STATE(1813), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113268,193 +113453,397 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3342), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47546] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47546] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47618] = 20, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [47614] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3350), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3352), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2556), 10, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, + [47670] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(3372), 1, + anon_sym_enum, + STATE(1312), 1, + sym__type_specifier, + STATE(1325), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2063), 1, + sym_type_descriptor, + STATE(1263), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [47726] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3378), 1, + sym_primitive_type, + STATE(1395), 1, + sym__type_specifier, + STATE(1442), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1453), 1, + sym__type_definition_type, + STATE(1280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [47782] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3378), 1, + sym_primitive_type, + STATE(1395), 1, + sym__type_specifier, + STATE(1442), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1452), 1, + sym__type_definition_type, + STATE(1280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [47838] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, + anon_sym_SLASH, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3194), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3215), 2, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, + ACTIONS(3364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(2556), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [47900] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2554), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, + anon_sym_SLASH, + ACTIONS(3362), 1, + anon_sym_AMP, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3350), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3352), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47688] = 21, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [47964] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3380), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3384), 1, + anon_sym_RBRACK, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47760] = 22, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48038] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2554), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, - ACTIONS(3348), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, - anon_sym_AMP_AMP, ACTIONS(3360), 1, - anon_sym_PIPE, - ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3374), 1, - anon_sym_RBRACK, - ACTIONS(3376), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -113463,29 +113852,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47834] = 21, + ACTIONS(2556), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [48104] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113494,29 +113887,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3378), 1, + ACTIONS(3388), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113526,7 +113918,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47906] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48176] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -113535,25 +113930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1444), 1, + STATE(1447), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113569,17 +113964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47962] = 21, + [48232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113588,29 +113981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3386), 1, + ACTIONS(3390), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113620,50 +114012,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [48034] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1311), 1, - sym__type_specifier, - STATE(1320), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2127), 1, - sym_type_descriptor, - STATE(1289), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [48090] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48304] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -113676,56 +114028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2057), 1, sym_identifier, - STATE(1311), 1, - sym__type_specifier, - STATE(1320), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2122), 1, - sym_type_descriptor, - STATE(1289), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [48146] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_enum, - STATE(1311), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1320), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2004), 1, + STATE(2126), 1, sym_type_descriptor, - STATE(1275), 2, + STATE(1290), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -113733,7 +114042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113749,101 +114058,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48202] = 21, + [48360] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, ACTIONS(3358), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2683), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48274] = 13, + ACTIONS(2556), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [48426] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1311), 1, - sym__type_specifier, - STATE(1320), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2111), 1, - sym_type_descriptor, - STATE(1289), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [48330] = 13, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, + anon_sym_SLASH, + STATE(810), 1, + sym_argument_list, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3352), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2554), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2556), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [48478] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -113852,25 +114156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1449), 1, + STATE(1450), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113886,17 +114190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48386] = 21, + [48534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -113905,29 +114207,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3390), 1, - anon_sym_RPAREN, - STATE(819), 1, + ACTIONS(3392), 1, + anon_sym_SEMI, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113937,67 +114238,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [48458] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(2681), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3392), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48528] = 21, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114006,29 +114309,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, ACTIONS(3394), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114038,68 +114340,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [48600] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48750] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3396), 1, - anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(2554), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [48672] = 21, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2556), 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, + [48810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114108,29 +114405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_SEMI, - STATE(819), 1, + ACTIONS(3396), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114140,144 +114436,60 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [48744] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_enum, - STATE(1311), 1, - sym__type_specifier, - STATE(1320), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2018), 1, - sym_type_descriptor, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [48800] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3380), 1, - sym_identifier, - ACTIONS(3384), 1, - sym_primitive_type, - STATE(1378), 1, - sym__type_specifier, - STATE(1441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1447), 1, - sym__type_definition_type, - STATE(1282), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [48856] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48882] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2675), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48928] = 13, + ACTIONS(3398), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48952] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -114288,15 +114500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(2057), 1, sym_identifier, - ACTIONS(3388), 1, + ACTIONS(3372), 1, anon_sym_enum, - STATE(1311), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1320), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2128), 1, + STATE(2143), 1, sym_type_descriptor, - STATE(1275), 2, + STATE(1263), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -114304,118 +114516,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 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, - [48984] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [49038] = 13, + 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, + [49008] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3207), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2605), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [49094] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114424,25 +114599,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3400), 1, + anon_sym_SEMI, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114452,20 +114630,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3400), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [49164] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114474,29 +114650,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, ACTIONS(3402), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114506,7 +114681,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [49236] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49222] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -114515,25 +114693,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1448), 1, + STATE(1455), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114549,62 +114727,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49292] = 15, + [49278] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3368), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 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, - [49352] = 21, + ACTIONS(3404), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49348] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3378), 1, + sym_primitive_type, + STATE(1395), 1, + sym__type_specifier, + STATE(1442), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1456), 1, + sym__type_definition_type, + STATE(1280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [49404] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114613,29 +114837,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3404), 1, - anon_sym_SEMI, - STATE(819), 1, + ACTIONS(3406), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114645,34 +114868,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [49424] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49476] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(3384), 1, - sym_primitive_type, - STATE(1378), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1454), 1, - sym__type_definition_type, - STATE(1282), 2, + STATE(1933), 1, + sym_type_descriptor, + STATE(1290), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(1903), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114688,7 +114914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49480] = 13, + [49532] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -114697,25 +114923,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1451), 1, + STATE(1448), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114731,17 +114957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49536] = 20, + [49588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114750,25 +114974,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_SEMI, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114778,20 +115005,61 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3406), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49606] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49660] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(2057), 1, + sym_identifier, + STATE(1312), 1, + sym__type_specifier, + STATE(1325), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2022), 1, + sym_type_descriptor, + STATE(1290), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [49716] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114800,29 +115068,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3408), 1, + ACTIONS(3410), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114832,165 +115099,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [49678] = 16, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49788] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, ACTIONS(3354), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2605), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(2554), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 6, + ACTIONS(2556), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [49740] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3410), 1, - anon_sym_SEMI, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [49812] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3412), 1, - anon_sym_RPAREN, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49884] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [49842] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(3372), 1, + anon_sym_enum, + STATE(1312), 1, + sym__type_specifier, + STATE(1325), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2214), 1, + sym_type_descriptor, + STATE(1263), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [49898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -114999,80 +115204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3414), 1, + ACTIONS(3412), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49956] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_RPAREN, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115082,17 +115235,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50028] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115101,92 +115255,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50100] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3380), 1, - sym_identifier, - ACTIONS(3384), 1, - sym_primitive_type, - STATE(1378), 1, - sym__type_specifier, - STATE(1441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1446), 1, - sym__type_definition_type, - STATE(1282), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [50156] = 21, + ACTIONS(3414), 1, + anon_sym_SEMI, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115195,29 +115306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3416), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115227,81 +115337,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50228] = 17, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50114] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2605), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3364), 1, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, anon_sym_AMP, - STATE(819), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3418), 1, + anon_sym_SEMI, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [50292] = 13, + [50186] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(3384), 1, - sym_primitive_type, - STATE(1378), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1445), 1, - sym__type_definition_type, - STATE(1282), 2, + STATE(1999), 1, + sym_type_descriptor, + STATE(1290), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(1903), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115317,65 +115434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50348] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2605), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [50414] = 21, + [50242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115384,29 +115451,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3422), 1, + ACTIONS(3420), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115416,17 +115482,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50486] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115435,29 +115502,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115467,17 +115529,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50558] = 21, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50384] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115486,29 +115552,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3426), 1, + ACTIONS(3424), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115518,65 +115583,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50630] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3360), 1, - anon_sym_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [50696] = 21, + [50456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115585,29 +115603,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3426), 1, anon_sym_SEMI, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115617,7 +115634,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50768] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50528] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -115626,25 +115646,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1450), 1, + STATE(1451), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115660,66 +115680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50824] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3358), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - STATE(819), 1, - sym_argument_list, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [50892] = 21, + [50584] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115728,29 +115697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3430), 1, - anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115760,58 +115724,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50964] = 11, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3428), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50654] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2534), 1, anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, + ACTIONS(2819), 1, anon_sym_DOT, ACTIONS(3354), 1, anon_sym_SLASH, - STATE(819), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_PIPE, + ACTIONS(3360), 1, + anon_sym_CARET, + ACTIONS(3362), 1, + anon_sym_AMP, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, + anon_sym_QMARK, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2693), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3350), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2607), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [51016] = 20, + [50726] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115820,25 +115798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115848,61 +115825,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3432), 2, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3430), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51086] = 21, + [50796] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_DASH_GT, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2815), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3432), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2573), 2, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2691), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51158] = 13, + [50868] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -115911,25 +115891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1378), 1, + STATE(1395), 1, sym__type_specifier, - STATE(1441), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1453), 1, + STATE(1446), 1, sym__type_definition_type, - STATE(1282), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115945,17 +115925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51214] = 21, + [50924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -115964,29 +115942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, ACTIONS(3340), 1, anon_sym_COMMA, ACTIONS(3434), 1, anon_sym_RPAREN, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115996,34 +115973,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51286] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50996] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3374), 1, sym_identifier, - STATE(1311), 1, + ACTIONS(3378), 1, + sym_primitive_type, + STATE(1395), 1, sym__type_specifier, - STATE(1320), 1, + STATE(1442), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2126), 1, - sym_type_descriptor, - STATE(1289), 2, + STATE(1449), 1, + sym__type_definition_type, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116039,17 +116019,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51342] = 20, + [51052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_SEMI, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51124] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116058,25 +116087,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3438), 1, + anon_sym_SEMI, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51196] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3440), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51266] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116086,10 +116219,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3436), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51412] = 13, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51338] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -116102,13 +116235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2057), 1, sym_identifier, - STATE(1311), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1320), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2118), 1, + STATE(2139), 1, sym_type_descriptor, - STATE(1289), 2, + STATE(1290), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -116116,7 +116249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116132,17 +116265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51468] = 20, + [51394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116151,25 +116282,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116179,70 +116313,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51538] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2534), 1, + anon_sym_DASH_GT, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(2819), 1, + anon_sym_DOT, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(2697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51608] = 20, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116251,27 +116384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_COMMA, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116281,35 +116411,82 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51677] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3446), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [51608] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(3372), 1, + anon_sym_enum, + STATE(1315), 1, + sym__type_specifier, + STATE(1325), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1115), 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, + [51661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2328), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3444), 1, - anon_sym_RBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -116318,47 +116495,96 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51730] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3225), 1, + anon_sym_AMP_AMP, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3231), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, + anon_sym_QMARK, + ACTIONS(3448), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3235), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51746] = 20, + [51799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2338), 1, anon_sym_RBRACK, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -116367,70 +116593,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51815] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(3118), 1, - sym_identifier, - ACTIONS(3120), 1, - anon_sym_LPAREN2, - ACTIONS(3122), 1, - anon_sym_STAR, - ACTIONS(3126), 1, - sym_primitive_type, - STATE(1534), 1, - sym__type_declarator, - STATE(2150), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3124), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1603), 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, [51868] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116439,27 +116622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_COMMA, - STATE(819), 1, + ACTIONS(3450), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116469,17 +116651,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [51937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116488,27 +116671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3448), 1, + ACTIONS(3452), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116518,66 +116700,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [52006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2326), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [52075] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116586,27 +116769,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3452), 1, - anon_sym_COLON, - STATE(819), 1, + ACTIONS(3454), 1, + anon_sym_COMMA, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116616,51 +116798,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52144] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2621), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3454), 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(2619), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [52183] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116669,27 +116818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3457), 1, - anon_sym_RPAREN, - STATE(819), 1, + ACTIONS(3456), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116699,17 +116847,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52252] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116718,27 +116867,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3459), 1, + ACTIONS(3458), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116748,66 +116896,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52321] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3460), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52390] = 20, + [52351] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -116816,27 +116965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3461), 1, + ACTIONS(3462), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116846,122 +116994,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52459] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52420] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2332), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52528] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_enum, - STATE(1310), 1, - sym__type_specifier, - STATE(1320), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1099), 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, - [52581] = 12, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1546), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -116977,133 +117087,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52634] = 20, + [52542] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3239), 1, - anon_sym_QMARK, - ACTIONS(3465), 1, - anon_sym_COLON, - STATE(819), 1, - sym_argument_list, - ACTIONS(2567), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2573), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52703] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3464), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52772] = 20, + [52611] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -117112,98 +117173,98 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52841] = 20, + [52680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2318), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3467), 1, - anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52910] = 12, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52749] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3120), 1, - anon_sym_LPAREN2, - ACTIONS(3122), 1, - anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3378), 1, sym_primitive_type, - STATE(1537), 1, - sym__type_declarator, - STATE(2150), 1, - sym_ms_based_modifier, - STATE(1269), 2, + STATE(1387), 1, + sym__type_specifier, + STATE(1442), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3124), 4, + ACTIONS(3376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1115), 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, @@ -117214,37 +117275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52963] = 12, + [52802] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3380), 1, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3384), 1, + ACTIONS(3126), 1, + anon_sym_LPAREN2, + ACTIONS(3128), 1, + anon_sym_STAR, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1344), 1, - sym__type_specifier, - STATE(1441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, + STATE(1549), 1, + sym__type_declarator, + STATE(2038), 1, + sym_ms_based_modifier, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3382), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + STATE(1610), 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, @@ -117255,17 +117316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53016] = 20, + [52855] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117274,27 +117333,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3469), 1, + ACTIONS(3466), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117304,35 +117362,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53085] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52924] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2346), 1, anon_sym_RBRACK, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -117341,78 +117402,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53154] = 20, + [52993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3468), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53223] = 20, + [53062] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117421,27 +117480,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3471), 1, - anon_sym_RPAREN, - STATE(819), 1, + ACTIONS(3470), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117451,35 +117509,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53292] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53131] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3472), 1, + anon_sym_RBRACK, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -117488,29 +117549,117 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53361] = 20, + [53200] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(3124), 1, + sym_identifier, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(3128), 1, + anon_sym_STAR, + ACTIONS(3132), 1, + sym_primitive_type, + STATE(1542), 1, + sym__type_declarator, + STATE(2038), 1, + sym_ms_based_modifier, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3130), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1610), 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, + [53253] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2322), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_PIPE, + ACTIONS(3360), 1, + anon_sym_CARET, + ACTIONS(3362), 1, + anon_sym_AMP, + ACTIONS(3382), 1, anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, + anon_sym_QMARK, + STATE(810), 1, + sym_argument_list, + ACTIONS(2534), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3350), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3352), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3366), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3368), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53322] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117519,27 +117668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3473), 1, + ACTIONS(3474), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117549,7 +117697,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53430] = 12, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53391] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -117562,11 +117713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2057), 1, sym_identifier, - STATE(1310), 1, + STATE(1315), 1, sym__type_specifier, - STATE(1320), 1, + STATE(1325), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -117574,7 +117725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1099), 5, + STATE(1115), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -117590,35 +117741,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53483] = 20, + [53444] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3475), 1, + ACTIONS(3476), 1, anon_sym_RBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -117627,29 +117778,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53552] = 20, + [53513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117658,27 +117807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3477), 1, + ACTIONS(3478), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117688,35 +117836,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53621] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53582] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2354), 1, anon_sym_RBRACK, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -117725,78 +117876,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53690] = 20, + [53651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3480), 1, + anon_sym_COMMA, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53759] = 20, + [53720] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117805,27 +117954,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3479), 1, + ACTIONS(3482), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117835,66 +117983,101 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53828] = 20, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2631), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2565), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3484), 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(2629), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [53828] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_RBRACK, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2729), 1, + anon_sym_LPAREN2, + ACTIONS(3354), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3481), 1, - anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, + ACTIONS(3350), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3370), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [53897] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -117903,27 +118086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3483), 1, + ACTIONS(3487), 1, anon_sym_COLON, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -117933,84 +118115,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [53966] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_RBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, + ACTIONS(3225), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + ACTIONS(3489), 1, + anon_sym_COLON, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3235), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, [54035] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_LPAREN2, ACTIONS(3354), 1, anon_sym_SLASH, ACTIONS(3356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3358), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3485), 1, + ACTIONS(3491), 1, anon_sym_RBRACK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3350), 2, @@ -118019,16 +118204,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(3366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, [54104] = 8, @@ -118036,21 +118221,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3143), 1, + ACTIONS(3164), 1, anon_sym_LBRACE, - ACTIONS(3487), 1, + ACTIONS(3493), 1, anon_sym_COLON, - STATE(1113), 1, + STATE(1091), 1, sym_attribute_specifier, - STATE(1306), 1, + STATE(1307), 1, sym_enumerator_list, - ACTIONS(3138), 5, + ACTIONS(3159), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3136), 16, + ACTIONS(3157), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118070,14 +118255,12 @@ static const uint16_t ts_small_parse_table[] = { [54148] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2530), 1, anon_sym_LPAREN2, - ACTIONS(2565), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, ACTIONS(3225), 1, anon_sym_AMP_AMP, ACTIONS(3227), 1, @@ -118086,25 +118269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3239), 1, + ACTIONS(3241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3243), 1, anon_sym_QMARK, - STATE(819), 1, + STATE(810), 1, sym_argument_list, - ACTIONS(2567), 2, + ACTIONS(2534), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2573), 2, + ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3223), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -118114,25 +118296,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [54214] = 7, ACTIONS(3), 1, sym_comment, - STATE(1309), 1, + STATE(1310), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3491), 2, + ACTIONS(3497), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3496), 2, + ACTIONS(3502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1301), 2, + STATE(1303), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3493), 3, + ACTIONS(3499), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3489), 16, + ACTIONS(3495), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118154,20 +118339,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3143), 1, + ACTIONS(3164), 1, anon_sym_LBRACE, - STATE(1106), 1, + STATE(1088), 1, sym_attribute_specifier, - STATE(1305), 1, + STATE(1306), 1, sym_enumerator_list, - ACTIONS(3200), 6, + ACTIONS(3202), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3198), 16, + ACTIONS(3200), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118187,9 +118372,9 @@ static const uint16_t ts_small_parse_table[] = { [54298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3505), 1, anon_sym_SEMI, - ACTIONS(2476), 7, + ACTIONS(2514), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -118197,7 +118382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 18, + ACTIONS(2516), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -118221,16 +118406,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1084), 1, + STATE(1096), 1, sym_attribute_specifier, - ACTIONS(3299), 6, + ACTIONS(3305), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3297), 16, + ACTIONS(3303), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118252,16 +118437,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1086), 1, + STATE(1083), 1, sym_attribute_specifier, - ACTIONS(3292), 6, + ACTIONS(3261), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3290), 16, + ACTIONS(3259), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118283,16 +118468,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1089), 1, + STATE(1082), 1, sym_attribute_specifier, - ACTIONS(3279), 6, + ACTIONS(3294), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3277), 16, + ACTIONS(3292), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118314,29 +118499,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1619), 1, + STATE(1621), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1313), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3501), 3, + ACTIONS(2847), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118348,10 +118533,10 @@ static const uint16_t ts_small_parse_table[] = { [54489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(3511), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3505), 21, + ACTIONS(3509), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -118376,10 +118561,10 @@ static const uint16_t ts_small_parse_table[] = { [54520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 2, + ACTIONS(3515), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3509), 21, + ACTIONS(3513), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -118406,29 +118591,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1620), 1, + STATE(1627), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1313), 2, + STATE(1314), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3513), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118442,29 +118627,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1622), 1, + STATE(1619), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1307), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3515), 3, + ACTIONS(3257), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118478,29 +118663,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1610), 1, + STATE(1646), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1314), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 3, + ACTIONS(3519), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118514,29 +118699,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1630), 1, + STATE(1633), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3517), 3, + ACTIONS(3521), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118550,29 +118735,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2316), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2841), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1612), 1, + STATE(1634), 1, sym__abstract_declarator, - STATE(1656), 1, + STATE(1653), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3288), 3, + ACTIONS(3523), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1641), 4, + STATE(1650), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3503), 8, + ACTIONS(3507), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118581,31 +118766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54786] = 10, + [54786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(3304), 1, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2913), 2, + sym_primitive_type, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(2917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3020), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3308), 1, anon_sym_STAR, - STATE(1526), 1, - sym__field_declarator, - STATE(2093), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1570), 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_LBRACK, + anon_sym_COLON, + ACTIONS(3017), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118615,30 +118796,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54830] = 10, + [54822] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1495), 1, - sym__declarator, - STATE(2164), 1, + STATE(1523), 1, + sym__field_declarator, + STATE(1994), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1570), 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, @@ -118649,25 +118830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54874] = 10, + [54866] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1499), 1, + STATE(1498), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -118683,51 +118864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54918] = 5, + [54910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_LPAREN2, - STATE(1357), 1, - sym_preproc_argument_list, - ACTIONS(3523), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3519), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54952] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1519), 1, + STATE(1526), 1, sym__field_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, STATE(1570), 5, @@ -118746,28 +118898,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54996] = 7, + [54954] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, - sym_primitive_type, - ACTIONS(3525), 1, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(3314), 1, sym_identifier, - STATE(1321), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3527), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3094), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(3318), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3096), 9, + STATE(1530), 1, + sym__field_declarator, + STATE(1994), 1, + sym_ms_based_modifier, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1570), 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, @@ -118777,27 +118932,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55034] = 6, + [54998] = 10, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2939), 2, - sym_primitive_type, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, sym_identifier, - ACTIONS(2943), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3068), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3310), 1, anon_sym_LPAREN2, + ACTIONS(3312), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3065), 9, + STATE(1483), 1, + sym__declarator, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1537), 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, @@ -118807,30 +118966,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55070] = 10, + [55042] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(2845), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3310), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3312), 1, anon_sym_STAR, - STATE(1515), 1, - sym__field_declarator, - STATE(2093), 1, + STATE(1490), 1, + sym__declarator, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1537), 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, @@ -118841,31 +119000,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55114] = 10, + [55086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + STATE(1369), 1, + sym_preproc_argument_list, + ACTIONS(3529), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3525), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55120] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 1, + sym_primitive_type, + ACTIONS(3531), 1, sym_identifier, - ACTIONS(3310), 1, + STATE(1317), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3533), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2973), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3312), 1, anon_sym_STAR, - STATE(1482), 1, - sym__declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2975), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118875,104 +119060,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55158] = 16, + [55158] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 1, + sym_identifier, + ACTIONS(3537), 1, + anon_sym_RPAREN, + ACTIONS(3539), 1, + anon_sym_LPAREN2, + ACTIONS(3541), 1, + anon_sym_defined, + ACTIONS(3547), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1327), 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, + [55201] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3551), 1, anon_sym_COMMA, - ACTIONS(3531), 1, + ACTIONS(3553), 1, anon_sym_RPAREN, - ACTIONS(3537), 1, + ACTIONS(3559), 1, anon_sym_SLASH, - ACTIONS(3539), 1, + ACTIONS(3561), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3563), 1, anon_sym_AMP_AMP, - ACTIONS(3543), 1, + ACTIONS(3565), 1, anon_sym_PIPE, - ACTIONS(3545), 1, + ACTIONS(3567), 1, anon_sym_CARET, - ACTIONS(3547), 1, + ACTIONS(3569), 1, anon_sym_AMP, - STATE(1820), 1, + STATE(1795), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3533), 2, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, + ACTIONS(3557), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3549), 2, + ACTIONS(3571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 2, + ACTIONS(3573), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3553), 2, + ACTIONS(3575), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3555), 2, + ACTIONS(3577), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55213] = 10, + [55256] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, - sym_identifier, + ACTIONS(3551), 1, + anon_sym_COMMA, ACTIONS(3559), 1, - anon_sym_RPAREN, + anon_sym_SLASH, ACTIONS(3561), 1, - anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, ACTIONS(3563), 1, - anon_sym_defined, + anon_sym_AMP_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_CARET, ACTIONS(3569), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, + anon_sym_AMP, + ACTIONS(3579), 1, + anon_sym_RPAREN, + STATE(1751), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1329), 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, - [55256] = 10, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55311] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3573), 1, + ACTIONS(3581), 1, anon_sym_RPAREN, - ACTIONS(3575), 1, + ACTIONS(3583), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1324), 7, + STATE(1330), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -118980,16 +119204,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55299] = 5, - ACTIONS(3519), 1, + [55354] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + anon_sym_COMMA, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3563), 1, + anon_sym_AMP_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_CARET, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_RPAREN, + STATE(1798), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3555), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55409] = 5, + ACTIONS(3525), 1, anon_sym_LF, - ACTIONS(3577), 1, + ACTIONS(3587), 1, anon_sym_LPAREN2, - ACTIONS(3579), 1, + ACTIONS(3589), 1, sym_comment, - STATE(1401), 1, + STATE(1428), 1, sym_preproc_argument_list, - ACTIONS(3523), 18, + ACTIONS(3529), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -119008,110 +119271,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [55332] = 16, + [55442] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COMMA, - ACTIONS(3537), 1, - anon_sym_SLASH, + ACTIONS(3535), 1, + sym_identifier, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3543), 1, + anon_sym_defined, + ACTIONS(3591), 1, + anon_sym_RPAREN, + ACTIONS(3593), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1328), 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, + [55485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3605), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1408), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [55525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3611), 5, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(3545), 1, - anon_sym_CARET, - ACTIONS(3547), 1, anon_sym_AMP, - ACTIONS(3581), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 15, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1786), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3533), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3549), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3555), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55387] = 16, + [55553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COMMA, - ACTIONS(3537), 1, + ACTIONS(2486), 5, anon_sym_SLASH, - ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3543), 1, anon_sym_PIPE, - ACTIONS(3545), 1, - anon_sym_CARET, - ACTIONS(3547), 1, anon_sym_AMP, - ACTIONS(3583), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2488), 15, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3533), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3549), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3555), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55442] = 10, + [55581] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3585), 1, - anon_sym_RPAREN, - ACTIONS(3587), 1, + ACTIONS(3613), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1328), 7, + STATE(1377), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119119,30 +119416,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55485] = 9, + [55621] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3615), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1400), 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, + [55661] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 1, + sym_identifier, + ACTIONS(3539), 1, + anon_sym_LPAREN2, + ACTIONS(3541), 1, + anon_sym_defined, + ACTIONS(3617), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1378), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [55701] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 1, + sym_identifier, + ACTIONS(3539), 1, + anon_sym_LPAREN2, + ACTIONS(3541), 1, anon_sym_defined, + ACTIONS(3619), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1376), 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, + [55741] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3621), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1427), 7, + STATE(1423), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119150,30 +119540,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55525] = 9, + [55781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3603), 1, + ACTIONS(3623), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1405), 7, + STATE(1438), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119181,24 +119571,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55565] = 9, + [55821] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(3625), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -119212,351 +119602,366 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55605] = 13, + [55861] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3543), 1, - anon_sym_PIPE, - ACTIONS(3545), 1, - anon_sym_CARET, - ACTIONS(3547), 1, - anon_sym_AMP, - ACTIONS(3533), 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3627), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3607), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [55653] = 12, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1425), 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, + [55901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3543), 1, - anon_sym_PIPE, - ACTIONS(3545), 1, - anon_sym_CARET, - ACTIONS(3547), 1, - anon_sym_AMP, - ACTIONS(3533), 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3629), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3607), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [55699] = 12, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1420), 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, + [55941] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3559), 1, anon_sym_SLASH, - ACTIONS(3545), 1, + ACTIONS(3561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3563), 1, + anon_sym_AMP_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, anon_sym_CARET, - ACTIONS(3547), 1, + ACTIONS(3569), 1, anon_sym_AMP, - ACTIONS(3609), 1, - anon_sym_PIPE, - ACTIONS(3533), 2, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, + ACTIONS(3557), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3549), 2, + ACTIONS(3571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 2, + ACTIONS(3573), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3553), 2, + ACTIONS(3575), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3555), 2, + ACTIONS(3577), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3607), 4, + ACTIONS(3631), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [55745] = 11, + [55991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3547), 1, - anon_sym_AMP, - ACTIONS(3609), 1, - anon_sym_PIPE, - ACTIONS(3533), 2, + ACTIONS(3535), 1, + sym_identifier, + ACTIONS(3539), 1, + anon_sym_LPAREN2, + ACTIONS(3541), 1, + anon_sym_defined, + ACTIONS(3633), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3607), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [55789] = 10, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1410), 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, + [56031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3533), 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3635), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1417), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [56071] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3637), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3609), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(3607), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [55831] = 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1415), 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, + [56111] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(2089), 1, anon_sym_LPAREN2, + ACTIONS(2091), 1, anon_sym_STAR, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3611), 7, + ACTIONS(2093), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(2845), 1, 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, - [55863] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3609), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3607), 7, + ACTIONS(2853), 1, + anon_sym_LBRACK, + STATE(1597), 1, + sym__declarator, + STATE(1647), 1, + sym__abstract_declarator, + STATE(1653), 1, + sym_parameter_list, + STATE(2001), 1, + sym_ms_based_modifier, + ACTIONS(3639), 2, 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, - [55903] = 7, + STATE(1650), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [56159] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3533), 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3641), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3609), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55939] = 6, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1403), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [56199] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3533), 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3643), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3609), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55973] = 3, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1414), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [56239] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3615), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3535), 1, + sym_identifier, + ACTIONS(3539), 1, + anon_sym_LPAREN2, + ACTIONS(3541), 1, + anon_sym_defined, + ACTIONS(3645), 1, + sym_number_literal, + ACTIONS(3543), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56001] = 5, + ACTIONS(3549), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1382), 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, + [56279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3619), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(3595), 1, 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, - [56033] = 3, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3647), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1406), 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, + [56319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 5, + ACTIONS(3651), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3607), 15, + ACTIONS(3649), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119572,30 +119977,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56061] = 9, + [56347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3623), 1, + ACTIONS(3653), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1439), 7, + STATE(1413), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119603,30 +120008,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56101] = 9, + [56387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3625), 1, + ACTIONS(3655), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1411), 7, + STATE(1367), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119634,30 +120039,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56141] = 9, + [56427] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3627), 1, + ACTIONS(3657), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1429), 7, + STATE(1412), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119665,30 +120070,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56181] = 9, + [56467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3629), 1, + ACTIONS(3659), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1412), 7, + STATE(1375), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119696,30 +120101,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56221] = 9, + [56507] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3631), 1, + ACTIONS(3661), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1413), 7, + STATE(1374), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119727,30 +120132,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56261] = 9, + [56547] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3633), 1, + ACTIONS(3663), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1418), 7, + STATE(1407), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119758,30 +120163,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56301] = 9, + [56587] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3635), 1, + ACTIONS(3665), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1355), 7, + STATE(1405), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119789,30 +120194,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56341] = 9, + [56627] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3637), 1, + ACTIONS(3667), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1414), 7, + STATE(1439), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119820,30 +120225,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56381] = 9, + [56667] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3639), 1, + ACTIONS(3669), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1415), 7, + STATE(1432), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119851,52 +120256,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56421] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3543), 1, - anon_sym_PIPE, - ACTIONS(3545), 1, - anon_sym_CARET, - ACTIONS(3547), 1, - anon_sym_AMP, - ACTIONS(3533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3641), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56471] = 3, + [56707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 5, + ACTIONS(3673), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3643), 15, + ACTIONS(3671), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119912,16 +120281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56499] = 3, + [56735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 5, + ACTIONS(3677), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3647), 15, + ACTIONS(3675), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119937,30 +120306,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56527] = 9, + [56763] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3651), 1, + ACTIONS(3679), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1403), 7, + STATE(1372), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119968,22 +120337,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56567] = 3, + [56803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(3559), 1, anon_sym_SLASH, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3683), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3653), 15, + ACTIONS(3681), 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, @@ -119993,55 +120364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56595] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, - sym_identifier, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - ACTIONS(3563), 1, - anon_sym_defined, - ACTIONS(3657), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1430), 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, - [56635] = 5, + [56835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3683), 5, anon_sym_SLASH, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3609), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3607), 13, + ACTIONS(3681), 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, @@ -120051,16 +120389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56667] = 3, + [56863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 5, + ACTIONS(3687), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3659), 15, + ACTIONS(3685), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120076,123 +120414,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56695] = 9, + [56891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3691), 2, anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3663), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1433), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [56735] = 9, + anon_sym_STAR, + STATE(1296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3689), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + 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, + [56923] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3665), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3563), 1, + anon_sym_AMP_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_CARET, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1425), 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, - [56775] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [56971] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, - sym_identifier, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - ACTIONS(3563), 1, - anon_sym_defined, - ACTIONS(3667), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3567), 1, + anon_sym_CARET, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3683), 1, + anon_sym_PIPE, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1391), 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, - [56815] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [57017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3669), 1, + ACTIONS(3693), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1398), 7, + STATE(1345), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120200,185 +120541,183 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56855] = 9, + [57057] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3671), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3683), 1, + anon_sym_PIPE, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1423), 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, - [56895] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [57101] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, - sym_identifier, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - ACTIONS(3563), 1, - anon_sym_defined, - ACTIONS(3673), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1342), 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, - [56935] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3683), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3681), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [57143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3675), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1436), 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, - [56975] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3683), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3681), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [57183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3677), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1442), 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, - [57015] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3683), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3681), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [57219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, - sym_identifier, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - ACTIONS(3563), 1, - anon_sym_defined, - ACTIONS(3679), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1341), 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, - [57055] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3683), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3681), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57253] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3681), 1, + ACTIONS(3695), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1340), 7, + STATE(1392), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120386,30 +120725,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57095] = 9, + [57293] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3683), 1, + ACTIONS(3697), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1338), 7, + STATE(1371), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120417,30 +120756,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57135] = 9, + [57333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3685), 1, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1408), 7, + STATE(1368), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120448,92 +120787,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57175] = 9, + [57373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3687), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3703), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3701), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1424), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57215] = 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, + [57401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3689), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3707), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3705), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1437), 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, - [57255] = 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, + [57429] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3691), 1, + ACTIONS(3709), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1407), 7, + STATE(1418), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120541,16 +120868,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57295] = 5, + [57469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 2, + ACTIONS(3713), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1339), 2, + STATE(1296), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3693), 7, + ACTIONS(3711), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -120568,123 +120895,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57327] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3697), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1409), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57367] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3699), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1417), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57407] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, - sym_identifier, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - ACTIONS(3563), 1, - anon_sym_defined, - ACTIONS(3701), 1, - sym_number_literal, - ACTIONS(3565), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3567), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3571), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1337), 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, - [57447] = 9, + [57501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3703), 1, + ACTIONS(3715), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1438), 7, + STATE(1424), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120692,16 +120926,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57487] = 5, + [57541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 2, + ACTIONS(3719), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1269), 2, + STATE(1385), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3705), 7, + ACTIONS(3717), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -120719,30 +120953,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57519] = 9, + [57573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3709), 1, + ACTIONS(3721), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1336), 7, + STATE(1443), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120750,30 +120984,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57559] = 9, + [57613] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3711), 1, + ACTIONS(3723), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1335), 7, + STATE(1436), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120781,30 +121015,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57599] = 9, + [57653] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3713), 1, + ACTIONS(3725), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1404), 7, + STATE(1444), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120812,30 +121046,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57639] = 9, + [57693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3715), 1, + ACTIONS(3727), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1334), 7, + STATE(1401), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120843,61 +121077,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57679] = 9, + [57733] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_defined, - ACTIONS(3717), 1, - sym_number_literal, - ACTIONS(3595), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_CARET, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1410), 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, - [57719] = 9, + ACTIONS(3557), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [57779] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3719), 1, + ACTIONS(3729), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1345), 7, + STATE(1411), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120905,30 +121142,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57759] = 9, + [57819] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3597), 1, anon_sym_LPAREN2, - ACTIONS(3563), 1, + ACTIONS(3599), 1, anon_sym_defined, - ACTIONS(3721), 1, + ACTIONS(3731), 1, sym_number_literal, - ACTIONS(3565), 2, + ACTIONS(3601), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3567), 2, + ACTIONS(3603), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3571), 5, + ACTIONS(3607), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1361), 7, + STATE(1421), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120936,41 +121173,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57799] = 3, + [57859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3723), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3735), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57827] = 3, + STATE(1370), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3733), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + 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, + [57891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 5, + ACTIONS(3739), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3727), 15, + ACTIONS(3737), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120986,65 +121225,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57855] = 13, + [57919] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, - anon_sym_LPAREN2, - ACTIONS(2087), 1, - anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3595), 1, sym_identifier, - ACTIONS(2841), 1, - anon_sym_LBRACK, - STATE(1567), 1, - sym__declarator, - STATE(1650), 1, - sym__abstract_declarator, - STATE(1656), 1, - sym_parameter_list, - STATE(2164), 1, - sym_ms_based_modifier, - ACTIONS(3731), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1641), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [57903] = 9, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + ACTIONS(3599), 1, + anon_sym_defined, + ACTIONS(3741), 1, + sym_number_literal, + ACTIONS(3601), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3607), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1409), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [57959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3539), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, + ACTIONS(3541), 1, anon_sym_defined, - ACTIONS(3733), 1, + ACTIONS(3743), 1, sym_number_literal, - ACTIONS(3595), 2, + ACTIONS(3543), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3597), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3601), 5, + ACTIONS(3549), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1406), 7, + STATE(1431), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121052,152 +121287,110 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57943] = 3, - ACTIONS(3), 1, + [57999] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(2488), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2490), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3649), 1, + anon_sym_LF, + ACTIONS(3651), 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, - [57971] = 3, - ACTIONS(3), 1, + [58026] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3737), 5, - anon_sym_SLASH, + ACTIONS(3745), 1, + anon_sym_LF, + ACTIONS(3751), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, + anon_sym_AMP_AMP, + ACTIONS(3755), 1, anon_sym_PIPE, + ACTIONS(3757), 1, + anon_sym_CARET, + ACTIONS(3759), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3735), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [57999] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1402), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2991), 2, - anon_sym_LPAREN2, + ACTIONS(3749), 3, anon_sym_STAR, - ACTIONS(3739), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2989), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [58030] = 9, - ACTIONS(3579), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3763), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [58071] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym_LF, - ACTIONS(3746), 1, + ACTIONS(3751), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, + anon_sym_AMP_AMP, + ACTIONS(3755), 1, + anon_sym_PIPE, + ACTIONS(3757), 1, + anon_sym_CARET, + ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3742), 2, + ACTIONS(3767), 1, + anon_sym_LF, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3609), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58069] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1431), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3055), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3754), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3053), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [58100] = 5, + [58116] = 5, ACTIONS(3), 1, sym_comment, - STATE(1434), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3061), 2, + ACTIONS(3020), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3757), 4, + ACTIONS(3769), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3059), 12, + ACTIONS(3017), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -121210,44 +121403,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [58131] = 3, - ACTIONS(3579), 1, + [58147] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3647), 1, - anon_sym_LF, - ACTIONS(3649), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, anon_sym_AMP_AMP, + ACTIONS(3755), 1, anon_sym_PIPE, + ACTIONS(3757), 1, anon_sym_CARET, + ACTIONS(3759), 1, anon_sym_AMP, + ACTIONS(3773), 1, + anon_sym_LF, + ACTIONS(3747), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3765), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58158] = 5, + [58192] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3077), 2, + ACTIONS(2999), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3760), 4, + ACTIONS(3775), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3075), 12, + ACTIONS(2997), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -121260,85 +121462,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [58189] = 12, - ACTIONS(3579), 1, + [58223] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3763), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3765), 1, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3683), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, anon_sym_PIPE, - ACTIONS(3771), 1, anon_sym_CARET, - ACTIONS(3742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3748), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3750), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58234] = 12, - ACTIONS(3579), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58252] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3773), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3778), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58279] = 5, - ACTIONS(3579), 1, + [58297] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3683), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3744), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3609), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121352,309 +121544,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58310] = 6, - ACTIONS(3579), 1, + [58324] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3752), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3609), 11, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, anon_sym_AMP_AMP, + ACTIONS(3755), 1, anon_sym_PIPE, + ACTIONS(3757), 1, anon_sym_CARET, + ACTIONS(3759), 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, - [58343] = 7, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3607), 1, - anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3752), 2, + ACTIONS(3761), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3609), 7, + [58369] = 12, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, anon_sym_AMP_AMP, + ACTIONS(3755), 1, anon_sym_PIPE, + ACTIONS(3757), 1, anon_sym_CARET, + ACTIONS(3759), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [58378] = 8, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3607), 1, + ACTIONS(3780), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3609), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [58415] = 12, - ACTIONS(3579), 1, + [58414] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3561), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3563), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3565), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3567), 1, anon_sym_CARET, - ACTIONS(3775), 1, - anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3782), 1, + anon_sym_RPAREN, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3752), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3557), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [58460] = 10, - ACTIONS(3579), 1, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58463] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym_LF, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3771), 1, + ACTIONS(3751), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, + anon_sym_AMP_AMP, + ACTIONS(3755), 1, + anon_sym_PIPE, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3742), 2, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3784), 1, + anon_sym_LF, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3609), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58501] = 11, - ACTIONS(3579), 1, + [58508] = 11, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3609), 2, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3683), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58544] = 12, - ACTIONS(3579), 1, + [58551] = 10, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3769), 1, - anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3742), 2, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3683), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58589] = 3, - ACTIONS(3579), 1, + [58592] = 9, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3609), 18, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3761), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3683), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58616] = 4, - ACTIONS(3579), 1, + [58631] = 8, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3609), 15, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3765), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58645] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3539), 1, + ACTIONS(3683), 5, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, anon_sym_AMP_AMP, - ACTIONS(3543), 1, anon_sym_PIPE, - ACTIONS(3545), 1, anon_sym_CARET, - ACTIONS(3547), 1, anon_sym_AMP, - ACTIONS(3777), 1, - anon_sym_RPAREN, - ACTIONS(3533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3551), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3555), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58694] = 3, - ACTIONS(3579), 1, + [58668] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3609), 1, anon_sym_LF, - ACTIONS(3617), 18, + ACTIONS(3611), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121673,110 +121824,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58721] = 12, - ACTIONS(3579), 1, + [58695] = 7, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3769), 1, - anon_sym_PIPE, - ACTIONS(3771), 1, - anon_sym_CARET, - ACTIONS(3779), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58766] = 12, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3746), 1, + ACTIONS(3683), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3765), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [58730] = 12, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3786), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3750), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58811] = 3, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_LF, - ACTIONS(3645), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3749), 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(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58838] = 5, + [58775] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1404), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3021), 2, + ACTIONS(3100), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3783), 4, + ACTIONS(3788), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3019), 12, + ACTIONS(3098), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -121789,17 +121911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [58869] = 3, - ACTIONS(3579), 1, + [58806] = 6, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3655), 18, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3765), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3683), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121811,146 +121938,170 @@ 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, - [58896] = 12, - ACTIONS(3579), 1, + [58839] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3786), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3791), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58941] = 12, - ACTIONS(3579), 1, + [58884] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3681), 1, + anon_sym_LF, + ACTIONS(3747), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3683), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3765), 1, + 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, + [58915] = 12, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3788), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3793), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58986] = 12, - ACTIONS(3579), 1, + [58960] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3790), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3795), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59031] = 12, - ACTIONS(3579), 1, + [59005] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3797), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59076] = 3, - ACTIONS(2490), 1, - anon_sym_LF, - ACTIONS(3579), 1, + [59050] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(2488), 18, + ACTIONS(3675), 1, + anon_sym_LF, + ACTIONS(3677), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121969,148 +122120,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59103] = 12, - ACTIONS(3579), 1, + [59077] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3769), 1, - anon_sym_PIPE, - ACTIONS(3771), 1, - anon_sym_CARET, - ACTIONS(3794), 1, + ACTIONS(3671), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3673), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3752), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59148] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_STAR, - ACTIONS(2974), 1, - anon_sym_LPAREN2, - STATE(1420), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59181] = 12, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, anon_sym_PIPE, - ACTIONS(3771), 1, anon_sym_CARET, - ACTIONS(3799), 1, - anon_sym_LF, - ACTIONS(3742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3748), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + [59104] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3685), 1, + anon_sym_LF, + ACTIONS(3687), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59226] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - anon_sym_SLASH, - ACTIONS(3539), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, anon_sym_AMP_AMP, - ACTIONS(3543), 1, anon_sym_PIPE, - ACTIONS(3545), 1, anon_sym_CARET, - ACTIONS(3547), 1, anon_sym_AMP, - ACTIONS(3801), 1, - anon_sym_RPAREN, - ACTIONS(3533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3535), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3549), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3553), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3555), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59275] = 5, + [59131] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3035), 2, + ACTIONS(2966), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3803), 4, + ACTIONS(3799), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3033), 12, + ACTIONS(2964), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122123,12 +122194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59306] = 3, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3727), 1, + [59162] = 3, + ACTIONS(2488), 1, anon_sym_LF, - ACTIONS(3729), 18, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(2486), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122147,36 +122218,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59333] = 3, - ACTIONS(3579), 1, + [59189] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, - anon_sym_LF, - ACTIONS(3725), 18, + ACTIONS(3559), 1, + anon_sym_SLASH, + ACTIONS(3561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3563), 1, + anon_sym_AMP_AMP, + ACTIONS(3565), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_CARET, + ACTIONS(3569), 1, + anon_sym_AMP, + ACTIONS(3802), 1, + anon_sym_RPAREN, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3557), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3573), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3575), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59238] = 12, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, + ACTIONS(3753), 1, anon_sym_AMP_AMP, + ACTIONS(3755), 1, anon_sym_PIPE, + ACTIONS(3757), 1, anon_sym_CARET, + ACTIONS(3759), 1, anon_sym_AMP, + ACTIONS(3804), 1, + anon_sym_LF, + ACTIONS(3747), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3765), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59360] = 5, + [59283] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1054), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3108), 2, + ACTIONS(3015), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(3806), 4, @@ -122184,7 +122299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3106), 12, + ACTIONS(3013), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122197,12 +122312,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59391] = 3, - ACTIONS(3579), 1, + [59314] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(1967), 1, + anon_sym_STAR, + ACTIONS(3091), 1, + anon_sym_LPAREN2, + STATE(1429), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1951), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59347] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3737), 1, anon_sym_LF, - ACTIONS(3661), 18, + ACTIONS(3739), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122221,152 +122363,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59418] = 12, - ACTIONS(3579), 1, + [59374] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3809), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3812), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59463] = 12, - ACTIONS(3579), 1, + [59419] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, - anon_sym_AMP_AMP, - ACTIONS(3769), 1, - anon_sym_PIPE, - ACTIONS(3771), 1, - anon_sym_CARET, - ACTIONS(3811), 1, - anon_sym_LF, - ACTIONS(3742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3748), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3752), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 3, + STATE(1054), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3041), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3750), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59508] = 12, - ACTIONS(3579), 1, + ACTIONS(3814), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3039), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59450] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3813), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3817), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59553] = 12, - ACTIONS(3579), 1, + [59495] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3815), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3819), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 4, + ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59598] = 5, + [59540] = 5, ACTIONS(3), 1, sym_comment, - STATE(1069), 1, + STATE(1433), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3068), 2, + ACTIONS(3035), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3817), 4, + ACTIONS(3821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3065), 12, + ACTIONS(3033), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122379,24 +122514,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59629] = 7, + [59571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, + STATE(1437), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3029), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3824), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3027), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, + [59602] = 7, + ACTIONS(3), 1, + sym_comment, ACTIONS(3827), 1, + sym_identifier, + ACTIONS(3833), 1, sym_primitive_type, - STATE(1440), 1, + STATE(1402), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3094), 2, + ACTIONS(2973), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3824), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3096), 10, + ACTIONS(2975), 10, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122407,45 +122568,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [59664] = 12, - ACTIONS(3579), 1, + [59637] = 12, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_AMP, - ACTIONS(3765), 1, + ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3767), 1, + ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3771), 1, + ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3830), 1, + ACTIONS(3759), 1, + anon_sym_AMP, + ACTIONS(3836), 1, anon_sym_LF, - ACTIONS(3742), 2, + ACTIONS(3747), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3748), 2, + ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3752), 2, + ACTIONS(3765), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 3, + ACTIONS(3749), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3763), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [59682] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3701), 1, + anon_sym_LF, + ACTIONS(3703), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3750), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, [59709] = 3, - ACTIONS(3579), 1, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3705), 1, anon_sym_LF, - ACTIONS(3737), 18, + ACTIONS(3707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122467,28 +122652,28 @@ static const uint16_t ts_small_parse_table[] = { [59736] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1708), 1, + STATE(1689), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122497,28 +122682,28 @@ static const uint16_t ts_small_parse_table[] = { [59777] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1700), 1, + STATE(1665), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122527,28 +122712,28 @@ static const uint16_t ts_small_parse_table[] = { [59818] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1707), 1, + STATE(1703), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122557,28 +122742,28 @@ static const uint16_t ts_small_parse_table[] = { [59859] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1728), 1, + STATE(1717), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122587,28 +122772,28 @@ static const uint16_t ts_small_parse_table[] = { [59900] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1706), 1, + STATE(1734), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122617,28 +122802,28 @@ static const uint16_t ts_small_parse_table[] = { [59941] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1727), 1, + STATE(1680), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122647,28 +122832,28 @@ static const uint16_t ts_small_parse_table[] = { [59982] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1686), 1, + STATE(1702), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122677,28 +122862,28 @@ static const uint16_t ts_small_parse_table[] = { [60023] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1713), 1, + STATE(1720), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122707,19 +122892,19 @@ static const uint16_t ts_small_parse_table[] = { [60064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3157), 1, anon_sym_const, - ACTIONS(3143), 1, + ACTIONS(3164), 1, anon_sym_LBRACE, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(3834), 1, + ACTIONS(3840), 1, anon_sym_COLON, - STATE(1113), 1, + STATE(1091), 1, sym_attribute_specifier, - STATE(1306), 1, + STATE(1307), 1, sym_enumerator_list, - ACTIONS(3138), 11, + ACTIONS(3159), 11, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, @@ -122734,28 +122919,28 @@ static const uint16_t ts_small_parse_table[] = { [60099] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1679), 1, + STATE(1726), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122764,28 +122949,28 @@ static const uint16_t ts_small_parse_table[] = { [60140] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1544), 1, sym__type_declarator, - STATE(1724), 1, + STATE(1715), 1, sym__type_definition_declarators, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122796,32 +122981,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(353), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_EQ, - STATE(220), 1, + STATE(147), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60229] = 15, @@ -122829,32 +123014,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(645), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_EQ, - STATE(472), 1, + STATE(365), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60277] = 15, @@ -122862,32 +123047,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_EQ, - STATE(376), 1, + STATE(478), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60325] = 15, @@ -122895,32 +123080,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_EQ, - STATE(160), 1, + STATE(399), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60373] = 15, @@ -122928,57 +123113,57 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_EQ, - STATE(368), 1, + STATE(213), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60421] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1609), 1, + STATE(1611), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -122987,53 +123172,115 @@ static const uint16_t ts_small_parse_table[] = { [60459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3118), 1, + ACTIONS(3124), 1, sym_identifier, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3126), 1, + ACTIONS(3132), 1, sym_primitive_type, - STATE(1561), 1, + STATE(1557), 1, sym__type_declarator, - STATE(2150), 1, + STATE(2038), 1, sym_ms_based_modifier, - ACTIONS(3124), 4, + ACTIONS(3130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1603), 5, + STATE(1610), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60497] = 12, + [60497] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(399), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1767), 1, + aux_sym__declaration_declarator_repeat1, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [60542] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(147), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1767), 1, + aux_sym__declaration_declarator_repeat1, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [60587] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - ACTIONS(3849), 1, + ACTIONS(3857), 1, anon_sym_SEMI, - STATE(1502), 1, + STATE(1514), 1, sym__field_declarator, - STATE(1747), 1, + STATE(1746), 1, sym__field_declaration_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, - STATE(2134), 1, + STATE(2224), 1, sym_attribute_specifier, STATE(1570), 5, sym_parenthesized_field_declarator, @@ -123041,59 +123288,59 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [60538] = 14, + [60628] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, + ACTIONS(645), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(376), 1, + STATE(365), 1, sym_compound_statement, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60583] = 12, + [60673] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - ACTIONS(3853), 1, + ACTIONS(3859), 1, anon_sym_SEMI, - STATE(1502), 1, + STATE(1514), 1, sym__field_declarator, - STATE(1772), 1, + STATE(1828), 1, sym__field_declaration_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, - STATE(2094), 1, + STATE(2076), 1, sym_attribute_specifier, STATE(1570), 5, sym_parenthesized_field_declarator, @@ -123101,157 +123348,95 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [60624] = 12, + [60714] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - ACTIONS(3855), 1, - anon_sym_SEMI, - STATE(1502), 1, - sym__field_declarator, - STATE(1815), 1, - sym__field_declaration_declarator, - STATE(2041), 1, - sym_attribute_specifier, - STATE(2093), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60665] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(368), 1, - sym_compound_statement, - STATE(1476), 1, - sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60710] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(353), 1, - anon_sym_LBRACE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(220), 1, - sym_compound_statement, - STATE(1476), 1, - sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60755] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, + ACTIONS(3861), 1, anon_sym_SEMI, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(160), 1, - sym_compound_statement, - STATE(1476), 1, - sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60800] = 12, + STATE(1514), 1, + sym__field_declarator, + STATE(1779), 1, + sym__field_declaration_declarator, + STATE(1994), 1, + sym_ms_based_modifier, + STATE(2005), 1, + sym_attribute_specifier, + STATE(1570), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [60755] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - ACTIONS(3857), 1, + ACTIONS(3863), 1, anon_sym_SEMI, - STATE(1502), 1, + STATE(1514), 1, sym__field_declarator, - STATE(1740), 1, + STATE(1772), 1, sym__field_declaration_declarator, - STATE(2093), 1, - sym_ms_based_modifier, - STATE(2144), 1, + STATE(1993), 1, sym_attribute_specifier, + STATE(1994), 1, + sym_ms_based_modifier, STATE(1570), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, + [60796] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(213), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1767), 1, + aux_sym__declaration_declarator_repeat1, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, [60841] = 14, ACTIONS(3), 1, sym_comment, @@ -123259,340 +123444,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3841), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(472), 1, + STATE(478), 1, sym_compound_statement, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, + STATE(1767), 1, aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [60886] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3865), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(804), 1, - sym__old_style_function_declarator, - STATE(1456), 1, - sym__declarator, - STATE(1808), 1, - sym_init_declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(2165), 1, - sym__declaration_declarator, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [60924] = 11, + ACTIONS(3867), 1, + aux_sym_preproc_if_token2, + ACTIONS(3869), 1, + aux_sym_preproc_else_token1, + ACTIONS(3871), 1, + aux_sym_preproc_elif_token1, + STATE(1528), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1534), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1609), 1, + sym_enumerator, + ACTIONS(3873), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2039), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(2040), 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, + [60925] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(825), 1, + STATE(805), 1, sym__old_style_function_declarator, - STATE(1457), 1, + STATE(1460), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1947), 1, + STATE(1959), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [60962] = 11, + [60963] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(806), 1, + STATE(803), 1, sym__old_style_function_declarator, - STATE(1459), 1, + STATE(1458), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2090), 1, + STATE(1940), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61000] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3864), 1, - anon_sym_LBRACK, - STATE(1474), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3859), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61026] = 11, + [61001] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(813), 1, + STATE(826), 1, sym__old_style_function_declarator, - STATE(1458), 1, + STATE(1457), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(2174), 1, + STATE(2170), 1, sym__declaration_declarator, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61064] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(3868), 1, - anon_sym_LBRACK, - STATE(1479), 1, - sym_gnu_asm_expression, - ACTIONS(3847), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1497), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3866), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [61094] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 1, - sym_identifier, - ACTIONS(3872), 1, - aux_sym_preproc_if_token2, - ACTIONS(3874), 1, - aux_sym_preproc_else_token1, - ACTIONS(3876), 1, - aux_sym_preproc_elif_token1, - STATE(1527), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1528), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1594), 1, - sym_enumerator, - STATE(2043), 1, - sym_preproc_elifdef, - ACTIONS(3878), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2040), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2042), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [61134] = 11, + [61039] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(809), 1, + STATE(827), 1, sym__old_style_function_declarator, - STATE(1455), 1, + STATE(1459), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1953), 1, - sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(3882), 1, - anon_sym_LBRACK, - STATE(1483), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3880), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61197] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1489), 1, - sym__declarator, - STATE(1808), 1, - sym_init_declarator, - STATE(1994), 1, + STATE(2002), 1, sym__declaration_declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61232] = 10, + [61077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1466), 1, + STATE(814), 1, + sym__old_style_function_declarator, + STATE(1461), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2090), 1, + STATE(1934), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61267] = 7, + [61115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3880), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(1476), 1, - sym_parameter_list, - STATE(1505), 2, + STATE(1479), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3884), 7, + ACTIONS(3875), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61296] = 5, + [61141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(3888), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - STATE(1488), 2, + STATE(1492), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3886), 9, + ACTIONS(3882), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -123600,113 +123675,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61321] = 7, + [61171] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, + ACTIONS(3849), 1, anon_sym_LBRACK, ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3890), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(1767), 1, + aux_sym__declaration_declarator_repeat1, + STATE(1812), 1, + sym_gnu_asm_expression, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - [61350] = 10, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [61210] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1467), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1953), 1, - sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(2170), 1, + sym__declaration_declarator, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61385] = 10, + [61245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3886), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61274] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1464), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2072), 1, + STATE(1959), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61420] = 10, + [61309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(3890), 1, + anon_sym_LBRACK, + STATE(1487), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3888), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61334] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1468), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(2174), 1, + STATE(2011), 1, sym__declaration_declarator, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61455] = 5, + [61369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3894), 1, anon_sym___attribute__, ACTIONS(3897), 1, anon_sym_LBRACK, - STATE(1488), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, ACTIONS(3892), 9, @@ -123719,264 +123839,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61480] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(1476), 1, - sym_parameter_list, - STATE(1749), 1, - sym_gnu_asm_expression, - STATE(1751), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3847), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61519] = 10, + [61394] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1470), 1, + STATE(1467), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(2165), 1, + STATE(1940), 1, sym__declaration_declarator, - STATE(1545), 5, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61554] = 10, + [61429] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(2174), 1, + STATE(2002), 1, sym__declaration_declarator, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61589] = 10, + [61464] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3899), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61493] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1953), 1, + STATE(1934), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61624] = 10, + [61528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(3890), 1, + anon_sym_LBRACK, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3888), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61553] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(2165), 1, + STATE(1959), 1, sym__declaration_declarator, - STATE(1545), 5, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61659] = 9, + [61588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(3903), 1, + anon_sym_LBRACK, + STATE(1487), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3901), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61613] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3899), 1, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3901), 1, + ACTIONS(3907), 1, aux_sym_preproc_if_token1, - ACTIONS(3905), 1, + ACTIONS(3911), 1, anon_sym_RBRACE, - ACTIONS(3903), 2, + ACTIONS(3909), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1879), 2, + STATE(1888), 2, sym_preproc_call, sym_enumerator, - STATE(2095), 2, + STATE(1992), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1524), 3, + STATE(1535), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [61692] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(1476), 1, - sym_parameter_list, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61721] = 10, + [61646] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1471), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(2090), 1, + STATE(1934), 1, sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(3882), 1, - anon_sym_LBRACK, - STATE(1488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3880), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61781] = 10, + [61681] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1489), 1, + STATE(1472), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1947), 1, - sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(2002), 1, + sym__declaration_declarator, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61816] = 7, + [61716] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3913), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61745] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3909), 7, + ACTIONS(3915), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -123984,109 +124119,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61845] = 10, + [61774] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3907), 1, + aux_sym_preproc_if_token1, + ACTIONS(3917), 1, + anon_sym_RBRACE, + ACTIONS(3909), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1866), 2, + sym_preproc_call, + sym_enumerator, + STATE(2098), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1495), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [61807] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(3310), 1, + anon_sym_LPAREN2, + ACTIONS(3312), 1, + anon_sym_STAR, + STATE(1465), 1, + sym__declarator, + STATE(1775), 1, + sym_init_declarator, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(2170), 1, + sym__declaration_declarator, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61842] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(3310), 1, + anon_sym_LPAREN2, + ACTIONS(3312), 1, + anon_sym_STAR, + STATE(1481), 1, + sym__declarator, + STATE(1775), 1, + sym_init_declarator, + STATE(1940), 1, + sym__declaration_declarator, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61877] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1463), 1, + STATE(1481), 1, sym__declarator, - STATE(1808), 1, + STATE(1775), 1, sym_init_declarator, - STATE(1947), 1, - sym__declaration_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(2102), 1, + sym__declaration_declarator, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61880] = 9, + [61912] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3899), 1, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, sym_identifier, - ACTIONS(3901), 1, - aux_sym_preproc_if_token1, - ACTIONS(3911), 1, - anon_sym_RBRACE, - ACTIONS(3903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1914), 2, - sym_preproc_call, - sym_enumerator, - STATE(2138), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1494), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [61913] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3310), 1, anon_sym_LPAREN2, - ACTIONS(3913), 1, - anon_sym_COMMA, - ACTIONS(3917), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_COLON, - STATE(1588), 1, - sym_parameter_list, - STATE(1694), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1696), 1, - sym_bitfield_clause, - ACTIONS(3915), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61949] = 9, + ACTIONS(3312), 1, + anon_sym_STAR, + STATE(804), 1, + sym__old_style_function_declarator, + STATE(1552), 1, + sym__declarator, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(818), 1, + STATE(829), 1, sym__old_style_function_declarator, - STATE(1559), 1, + STATE(1558), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61981] = 3, + [61976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - ACTIONS(3921), 11, + ACTIONS(2877), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124098,124 +124281,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3927), 1, - anon_sym_LBRACK, - STATE(1474), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3925), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62025] = 9, + [61996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(794), 1, + sym__old_style_function_declarator, + STATE(1554), 1, sym__declarator, - STATE(1873), 1, - sym_init_declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62057] = 9, + [62028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(796), 1, + STATE(812), 1, sym__old_style_function_declarator, - STATE(1547), 1, + STATE(1561), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62089] = 10, + [62060] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_EQ, ACTIONS(3851), 1, + anon_sym_EQ, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1838), 1, + STATE(1832), 1, sym_gnu_asm_expression, - ACTIONS(3847), 2, + ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3929), 2, + ACTIONS(3919), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62123] = 9, + [62094] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, + anon_sym___based, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(3310), 1, + anon_sym_LPAREN2, + ACTIONS(3312), 1, + anon_sym_STAR, + STATE(1509), 1, + sym__declarator, + STATE(1880), 1, + sym_init_declarator, + STATE(2001), 1, + sym_ms_based_modifier, + STATE(1537), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62126] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(800), 1, + STATE(818), 1, sym__old_style_function_declarator, - STATE(1551), 1, + STATE(1555), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62155] = 3, + [62158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3923), 1, + anon_sym_LBRACK, + STATE(1479), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3921), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, + ACTIONS(3927), 1, anon_sym_LBRACK, - ACTIONS(2823), 11, + ACTIONS(3925), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124227,7 +124433,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62175] = 3, + [62202] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(3929), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_LBRACK, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1577), 1, + sym_parameter_list, + STATE(1679), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1705), 1, + sym_bitfield_clause, + ACTIONS(3931), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1543), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [62238] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2865), 1, @@ -124244,234 +124475,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62195] = 9, + [62258] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3937), 1, + aux_sym_preproc_if_token2, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, + ACTIONS(3941), 1, + aux_sym_preproc_elif_token1, + STATE(1534), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2112), 1, + sym_enumerator, + ACTIONS(3943), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2039), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [62289] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(816), 1, - sym__old_style_function_declarator, - STATE(1552), 1, + STATE(1592), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62227] = 9, + [62318] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3869), 1, + aux_sym_preproc_else_token1, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3947), 1, + aux_sym_preproc_if_token2, + ACTIONS(3949), 1, + aux_sym_preproc_elif_token1, + STATE(1567), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1595), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1663), 1, + sym_enumerator, + STATE(2154), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2155), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [62351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(805), 1, - sym__old_style_function_declarator, - STATE(1554), 1, + STATE(1614), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62259] = 9, + [62380] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(3931), 1, - aux_sym_preproc_if_token2, - ACTIONS(3933), 1, + ACTIONS(3869), 1, aux_sym_preproc_else_token1, - ACTIONS(3935), 1, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3949), 1, aux_sym_preproc_elif_token1, - STATE(1528), 1, + ACTIONS(3951), 1, + aux_sym_preproc_if_token2, + STATE(1589), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1979), 1, + STATE(1598), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1663), 1, sym_enumerator, - ACTIONS(3878), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2042), 3, - sym_preproc_elifdef, + STATE(2105), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [62290] = 7, + STATE(2108), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [62413] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3917), 1, + ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1588), 1, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1577), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1776), 1, + sym_bitfield_clause, + STATE(1543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3937), 5, + ACTIONS(3953), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [62317] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(2833), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1579), 1, - sym__declarator, - STATE(2164), 1, - sym_ms_based_modifier, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62346] = 8, + [62444] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1581), 1, + STATE(1591), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62375] = 8, + [62473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym___based, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3306), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, - anon_sym_STAR, - STATE(1520), 1, - sym__field_declarator, - STATE(2093), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62404] = 7, + ACTIONS(3933), 1, + anon_sym_LBRACK, + STATE(1577), 1, + sym_parameter_list, + STATE(1543), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3955), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [62500] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3917), 1, + ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1588), 1, + STATE(1577), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3939), 5, + ACTIONS(3957), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62431] = 9, + [62527] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3869), 1, + aux_sym_preproc_else_token1, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3949), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3959), 1, + aux_sym_preproc_if_token2, + STATE(1574), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1576), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1663), 1, + sym_enumerator, + STATE(2176), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2177), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [62560] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3917), 1, + ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_COLON, - STATE(1588), 1, + STATE(1577), 1, sym_parameter_list, - STATE(1742), 1, - sym_bitfield_clause, - STATE(1538), 2, + STATE(1543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3941), 3, + ACTIONS(3961), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [62462] = 8, + anon_sym_COLON, + [62587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1583), 1, + STATE(1579), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62491] = 8, + [62616] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(3865), 1, + sym_identifier, + ACTIONS(3963), 1, + aux_sym_preproc_if_token2, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(3967), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3969), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1575), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2121), 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, + [62645] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3304), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3308), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1607), 1, + STATE(1605), 1, sym__field_declarator, - STATE(2093), 1, + STATE(1994), 1, sym_ms_based_modifier, STATE(1570), 5, sym_parenthesized_field_declarator, @@ -124479,263 +124774,171 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [62520] = 7, + [62674] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3917), 1, + ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1588), 1, + STATE(1577), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3943), 5, + ACTIONS(3971), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62547] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3948), 1, - aux_sym_preproc_if_token1, - ACTIONS(3954), 1, - sym_preproc_directive, - ACTIONS(3957), 1, - anon_sym_RBRACE, - ACTIONS(3951), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2038), 2, - sym_preproc_call, - sym_enumerator, - STATE(1524), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [62576] = 8, + [62701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(3314), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1606), 1, - sym__declarator, - STATE(2164), 1, + STATE(1521), 1, + sym__field_declarator, + STATE(1994), 1, sym_ms_based_modifier, - STATE(1545), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62605] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3917), 1, - anon_sym_LBRACK, - STATE(1588), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3959), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [62632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 1, - sym_identifier, - ACTIONS(3961), 1, - aux_sym_preproc_if_token2, - ACTIONS(3963), 1, - aux_sym_preproc_else_token1, - ACTIONS(3965), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3878), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1586), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1975), 3, - sym_preproc_elifdef, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62661] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(3933), 1, - aux_sym_preproc_else_token1, - ACTIONS(3935), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3967), 1, - aux_sym_preproc_if_token2, - STATE(1593), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1979), 1, - sym_enumerator, - ACTIONS(3878), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1980), 3, - sym_preproc_elifdef, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [62692] = 8, + STATE(1570), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [62730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1577), 1, + STATE(1571), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62721] = 10, + [62759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, - sym_identifier, - ACTIONS(3971), 1, - aux_sym_preproc_if_token2, - ACTIONS(3973), 1, - aux_sym_preproc_elif_token1, - STATE(1563), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1585), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1642), 1, - sym_enumerator, - STATE(1971), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(1974), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62754] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, + ACTIONS(2093), 1, anon_sym___based, - ACTIONS(2833), 1, + ACTIONS(2845), 1, sym_identifier, ACTIONS(3310), 1, anon_sym_LPAREN2, ACTIONS(3312), 1, anon_sym_STAR, - STATE(1568), 1, + STATE(1582), 1, sym__declarator, - STATE(2164), 1, + STATE(2001), 1, sym_ms_based_modifier, - STATE(1545), 5, + STATE(1537), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62783] = 10, + [62788] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3973), 1, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, + ACTIONS(3941), 1, aux_sym_preproc_elif_token1, - ACTIONS(3975), 1, + ACTIONS(3973), 1, aux_sym_preproc_if_token2, - STATE(1564), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1592), 1, + STATE(1587), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1642), 1, + STATE(2112), 1, sym_enumerator, - STATE(1985), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(1986), 2, + ACTIONS(3943), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2111), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [62816] = 7, + sym_preproc_elifdef_in_enumerator_list, + [62819] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3979), 1, + ACTIONS(3975), 1, + sym_identifier, + ACTIONS(3978), 1, + aux_sym_preproc_if_token1, + ACTIONS(3984), 1, + sym_preproc_directive, + ACTIONS(3987), 1, + anon_sym_RBRACE, + ACTIONS(3981), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2044), 2, + sym_preproc_call, + sym_enumerator, + STATE(1535), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [62848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, anon_sym_LBRACK, - STATE(1608), 1, - sym_parameter_list, - STATE(1557), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3977), 4, - anon_sym_COMMA, + STATE(1667), 1, + sym_gnu_asm_input_operand, + STATE(2132), 1, + sym_string_literal, + ACTIONS(3989), 2, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [62842] = 7, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [62872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3979), 1, + ACTIONS(3995), 1, anon_sym_LBRACK, - STATE(1608), 1, - sym_parameter_list, - STATE(1557), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3981), 4, + ACTIONS(3993), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [62868] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(3983), 9, + ACTIONS(3997), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124745,12 +124948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62886] = 3, + [62908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(3987), 9, + ACTIONS(4001), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124760,154 +124963,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62904] = 7, + [62926] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(1732), 1, + sym_gnu_asm_output_operand, + STATE(2066), 1, + sym_string_literal, + ACTIONS(4005), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [62950] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3979), 1, + ACTIONS(4011), 1, anon_sym_LBRACK, - STATE(1608), 1, + STATE(1613), 1, sym_parameter_list, - STATE(1557), 2, + STATE(1556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3991), 4, + ACTIONS(4009), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [62930] = 5, + [62976] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4011), 1, anon_sym_LBRACK, - STATE(1474), 2, + STATE(1613), 1, + sym_parameter_list, + STATE(1556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3993), 6, + ACTIONS(4013), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [62952] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1670), 1, - sym_gnu_asm_input_operand, - STATE(1955), 1, - sym_string_literal, - ACTIONS(3997), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [62976] = 3, + [63002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 1, - anon_sym_LBRACK, - ACTIONS(4001), 9, - 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, - anon_sym_asm, - anon_sym___asm__, - [62994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 1, + ACTIONS(4017), 1, anon_sym_LBRACK, - ACTIONS(4005), 9, + STATE(1479), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4015), 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_asm, - anon_sym___asm__, - [63012] = 9, + anon_sym___attribute__, + anon_sym_COLON, + [63024] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3979), 1, + ACTIONS(4011), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, + ACTIONS(4019), 1, anon_sym_COMMA, - STATE(1608), 1, + STATE(1613), 1, sym_parameter_list, - STATE(1718), 1, + STATE(1677), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4011), 2, + ACTIONS(4021), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1557), 2, + STATE(1556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63042] = 6, + [63054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 1, + ACTIONS(4025), 1, anon_sym_LBRACK, - STATE(1691), 1, - sym_gnu_asm_output_operand, - STATE(2015), 1, - sym_string_literal, - ACTIONS(4013), 2, + ACTIONS(4023), 9, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63066] = 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63072] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3979), 1, + ACTIONS(4011), 1, anon_sym_LBRACK, - STATE(1608), 1, + STATE(1613), 1, sym_parameter_list, - STATE(1557), 2, + STATE(1556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4017), 4, + ACTIONS(4027), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63092] = 3, + [63098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - ACTIONS(4019), 9, + ACTIONS(4029), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124917,12 +125106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63110] = 3, + [63116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4035), 1, anon_sym_LBRACK, - ACTIONS(4023), 9, + ACTIONS(4033), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124932,36 +125121,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63128] = 9, + [63134] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(4011), 1, anon_sym_LBRACK, - STATE(356), 1, - sym_compound_statement, - STATE(1143), 1, - sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1613), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63157] = 6, + ACTIONS(4037), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [63160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, + ACTIONS(4039), 1, anon_sym_RPAREN, - ACTIONS(4029), 1, + ACTIONS(4041), 1, anon_sym_COLON, - STATE(771), 1, + STATE(774), 1, sym_string_literal, - STATE(1738), 1, + STATE(1811), 1, sym_gnu_asm_output_operand_list, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -124969,16 +125157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63180] = 6, + [63183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, + ACTIONS(4041), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(4043), 1, anon_sym_RPAREN, - STATE(771), 1, + STATE(774), 1, sym_string_literal, - STATE(1817), 1, + STATE(1827), 1, sym_gnu_asm_output_operand_list, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -124986,227 +125174,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63203] = 6, + [63206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_COLON, - ACTIONS(4033), 1, - anon_sym_RPAREN, - STATE(771), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3845), 1, + anon_sym_LPAREN2, + ACTIONS(3849), 1, + anon_sym_LBRACK, + STATE(475), 1, + sym_compound_statement, + STATE(1145), 1, + sym__old_style_parameter_list, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, + sym_identifier, + ACTIONS(4049), 1, + sym_system_lib_string, + STATE(1968), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(4047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63226] = 9, + [63256] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(645), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(401), 1, + STATE(373), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63255] = 9, + [63285] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(353), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(225), 1, + STATE(148), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63284] = 5, + [63314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, - sym_identifier, - ACTIONS(4039), 1, - sym_system_lib_string, - STATE(2063), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4037), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63305] = 9, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4053), 1, + anon_sym_LBRACK, + STATE(1479), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4051), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [63335] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4011), 1, + anon_sym_LBRACK, + STATE(1613), 1, + sym_parameter_list, + STATE(1556), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4055), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [63360] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(456), 1, + STATE(227), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63334] = 5, + [63389] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4041), 1, - sym_identifier, - ACTIONS(4043), 1, - sym_system_lib_string, - STATE(2188), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4037), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - sym_identifier, - ACTIONS(4047), 1, - sym_system_lib_string, - STATE(2098), 2, - sym_preproc_call_expression, + anon_sym_COLON, + ACTIONS(4057), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_string_literal, - ACTIONS(4037), 5, + STATE(1781), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4051), 1, - anon_sym_LBRACK, - STATE(1474), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4049), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [63397] = 5, + [63412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4053), 1, + ACTIONS(4059), 1, sym_identifier, - ACTIONS(4055), 1, + ACTIONS(4061), 1, sym_system_lib_string, - STATE(2204), 2, + STATE(2161), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4037), 5, + ACTIONS(4047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63418] = 9, + [63433] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3845), 1, anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(144), 1, + STATE(382), 1, sym_compound_statement, - STATE(1143), 1, + STATE(1145), 1, sym__old_style_parameter_list, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63447] = 5, + [63462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 1, + ACTIONS(4063), 1, sym_identifier, - ACTIONS(4059), 1, + ACTIONS(4065), 1, sym_system_lib_string, - STATE(2010), 2, + STATE(2171), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4037), 5, + ACTIONS(4047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63468] = 7, + [63483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3979), 1, - anon_sym_LBRACK, - STATE(1608), 1, - sym_parameter_list, - STATE(1557), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4061), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [63493] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, + ACTIONS(4041), 1, anon_sym_COLON, - ACTIONS(4063), 1, + ACTIONS(4067), 1, anon_sym_RPAREN, - STATE(771), 1, + STATE(774), 1, sym_string_literal, - STATE(1774), 1, + STATE(1782), 1, sym_gnu_asm_output_operand_list, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125214,46 +125390,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63516] = 7, + [63506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3963), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, + ACTIONS(4069), 1, sym_identifier, - ACTIONS(4065), 1, - aux_sym_preproc_if_token2, - ACTIONS(4067), 1, - aux_sym_preproc_elif_token1, - STATE(1638), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2001), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63540] = 7, + ACTIONS(4071), 1, + sym_system_lib_string, + STATE(2120), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3963), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, + ACTIONS(4073), 1, sym_identifier, - ACTIONS(4067), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4069), 1, - aux_sym_preproc_if_token2, - STATE(1638), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1939), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63564] = 3, + ACTIONS(4075), 1, + sym_system_lib_string, + STATE(2031), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4071), 7, + ACTIONS(4077), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125261,64 +125435,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63580] = 5, + [63564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(3945), 1, sym_identifier, - STATE(1549), 1, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(4081), 1, + aux_sym_preproc_if_token2, + ACTIONS(4083), 1, + aux_sym_preproc_elif_token1, + STATE(1637), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2180), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [63588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + anon_sym_LBRACK, + STATE(1742), 1, + sym_gnu_asm_input_operand, + STATE(2132), 1, sym_string_literal, - STATE(1737), 1, - sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63600] = 7, + [63608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, + ACTIONS(3947), 1, + aux_sym_preproc_if_token2, + ACTIONS(4085), 1, + aux_sym_preproc_elif_token1, + STATE(1595), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2123), 1, + sym_enumerator, + STATE(2154), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [63634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(1476), 1, - sym_parameter_list, - ACTIONS(4077), 2, + ACTIONS(4087), 7, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63624] = 8, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [63650] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(353), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(225), 1, + STATE(148), 1, sym_compound_statement, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63650] = 5, + [63676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1736), 1, + STATE(1773), 1, sym_gnu_asm_output_operand, - STATE(2015), 1, + STATE(2066), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125326,12 +125531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63670] = 3, + [63696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4081), 1, + ACTIONS(4093), 1, anon_sym_LBRACK, - ACTIONS(4079), 7, + ACTIONS(4091), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125339,12 +125544,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63686] = 3, + [63712] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, ACTIONS(4085), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4095), 1, + aux_sym_preproc_if_token2, + STATE(1638), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2123), 1, + sym_enumerator, + STATE(2217), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [63738] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4102), 1, + aux_sym_preproc_elif_token1, + STATE(1575), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4100), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [63758] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(4083), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4104), 1, + aux_sym_preproc_if_token2, + STATE(1637), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2216), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [63782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 1, anon_sym_LBRACK, - ACTIONS(4083), 7, + ACTIONS(4106), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125352,46 +125607,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63702] = 8, + [63798] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1718), 1, + sym_string_literal, + ACTIONS(4110), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63816] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(645), 1, + anon_sym_LBRACE, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(373), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3933), 1, + ACTIONS(3939), 1, aux_sym_preproc_else_token1, - ACTIONS(4087), 1, + ACTIONS(3959), 1, aux_sym_preproc_if_token2, - ACTIONS(4089), 1, + ACTIONS(4085), 1, aux_sym_preproc_elif_token1, - STATE(1592), 1, + STATE(1574), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2048), 1, + STATE(2123), 1, sym_enumerator, - STATE(1986), 2, + STATE(2176), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [63728] = 4, + [63868] = 7, ACTIONS(3), 1, sym_comment, - STATE(1662), 1, - sym_string_literal, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63746] = 5, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(4083), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4112), 1, + aux_sym_preproc_if_token2, + STATE(1567), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2155), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [63892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3849), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(227), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63918] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, + ACTIONS(4085), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4114), 1, + aux_sym_preproc_if_token2, + STATE(1589), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2123), 1, + sym_enumerator, + STATE(2105), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [63944] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(4083), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4116), 1, + aux_sym_preproc_if_token2, + STATE(1576), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2177), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [63968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4118), 1, sym_identifier, STATE(1550), 1, sym_string_literal, - STATE(1775), 1, + STATE(1787), 1, sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125399,27 +125742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63766] = 3, + [63988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, - anon_sym_LBRACK, - ACTIONS(4093), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, + ACTIONS(4118), 1, sym_identifier, - STATE(1548), 1, + STATE(1559), 1, sym_string_literal, - STATE(1754), 1, + STATE(1769), 1, sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125427,30 +125757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63802] = 8, + [64008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(456), 1, - sym_compound_statement, - STATE(1476), 1, - sym_parameter_list, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63828] = 3, + ACTIONS(4120), 1, + sym_identifier, + ACTIONS(4125), 1, + aux_sym_preproc_elif_token1, + STATE(1587), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2112), 1, + sym_enumerator, + ACTIONS(4123), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [64030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(4097), 7, + ACTIONS(4127), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125458,30 +125786,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63844] = 8, + [64046] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - STATE(144), 1, - sym_compound_statement, - STATE(1476), 1, - sym_parameter_list, - STATE(1505), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63870] = 3, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3939), 1, + aux_sym_preproc_else_token1, + ACTIONS(4085), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4131), 1, + aux_sym_preproc_if_token2, + STATE(1638), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2123), 1, + sym_enumerator, + STATE(2122), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(4135), 1, anon_sym_LBRACK, - ACTIONS(4101), 7, + ACTIONS(4133), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125489,123 +125817,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63886] = 8, + [64088] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(401), 1, + STATE(382), 1, sym_compound_statement, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1781), 1, - sym_gnu_asm_input_operand, - STATE(1955), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63932] = 8, + [64114] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - STATE(356), 1, + STATE(475), 1, sym_compound_statement, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63958] = 4, + [64140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, + ACTIONS(4139), 1, aux_sym_preproc_elif_token1, - ACTIONS(4109), 1, + ACTIONS(4141), 1, anon_sym_EQ, - ACTIONS(4105), 6, + ACTIONS(4137), 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, - [63976] = 8, + [64158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 1, + anon_sym_LBRACK, + ACTIONS(4143), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3933), 1, + ACTIONS(3939), 1, aux_sym_preproc_else_token1, - ACTIONS(4089), 1, + ACTIONS(4085), 1, aux_sym_preproc_elif_token1, - ACTIONS(4111), 1, + ACTIONS(4147), 1, aux_sym_preproc_if_token2, - STATE(1632), 1, + STATE(1638), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2048), 1, + STATE(2123), 1, sym_enumerator, - STATE(1998), 2, + STATE(2179), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64002] = 5, + [64200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, - sym_identifier, ACTIONS(4118), 1, - aux_sym_preproc_elif_token1, - STATE(1586), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4116), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64022] = 3, + sym_identifier, + STATE(1551), 1, + sym_string_literal, + STATE(1757), 1, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64220] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(4120), 7, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + ACTIONS(4149), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64038] = 3, + STATE(1512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64244] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + sym_identifier, + ACTIONS(3965), 1, + aux_sym_preproc_else_token1, + ACTIONS(4083), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4151), 1, + aux_sym_preproc_if_token2, + STATE(1637), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2151), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(4124), 7, + ACTIONS(4153), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125613,14 +125960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64054] = 5, + [64284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4118), 1, sym_identifier, - STATE(1562), 1, + STATE(1563), 1, sym_string_literal, - STATE(1748), 1, + STATE(1755), 1, sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125628,504 +125975,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64074] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(3933), 1, - aux_sym_preproc_else_token1, - ACTIONS(3971), 1, - aux_sym_preproc_if_token2, - ACTIONS(4089), 1, - aux_sym_preproc_elif_token1, - STATE(1585), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2048), 1, - sym_enumerator, - STATE(1971), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64100] = 7, + [64304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3963), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, - sym_identifier, - ACTIONS(4067), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4128), 1, - aux_sym_preproc_if_token2, - STATE(1563), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1974), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64124] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(3933), 1, - aux_sym_preproc_else_token1, - ACTIONS(4089), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4130), 1, - aux_sym_preproc_if_token2, - STATE(1632), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2048), 1, - sym_enumerator, - STATE(1942), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64150] = 6, + ACTIONS(4159), 1, + anon_sym_LBRACK, + ACTIONS(4157), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [64319] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2813), 1, + anon_sym_LBRACE, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4137), 1, - aux_sym_preproc_elif_token1, - STATE(1593), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1979), 1, - sym_enumerator, - ACTIONS(4135), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64172] = 4, + STATE(1056), 1, + sym_field_declaration_list, + STATE(1661), 1, + sym_attribute_specifier, + STATE(1800), 1, + sym_ms_declspec_modifier, + [64344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COMMA, - ACTIONS(4143), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4139), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64189] = 3, + ACTIONS(4163), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_DOT, + STATE(1603), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [64363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4173), 1, anon_sym_LBRACK, - ACTIONS(4145), 6, + ACTIONS(4171), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64204] = 3, + [64378] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(4149), 6, - anon_sym_COMMA, + ACTIONS(4175), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64219] = 3, + STATE(1577), 1, + sym_parameter_list, + STATE(1543), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, + ACTIONS(4179), 1, anon_sym_LBRACK, - ACTIONS(4153), 6, + ACTIONS(4177), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64234] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_LBRACK, - ACTIONS(4160), 1, - anon_sym_EQ, - ACTIONS(4162), 1, - anon_sym_DOT, - STATE(1598), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [64253] = 3, + [64416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4183), 1, anon_sym_LBRACK, - ACTIONS(4165), 6, + ACTIONS(4181), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64268] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(4169), 1, - sym_identifier, - STATE(1054), 1, - sym_field_declaration_list, - STATE(1654), 1, - sym_attribute_specifier, - STATE(1804), 1, - sym_ms_declspec_modifier, - [64293] = 5, + [64431] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(4171), 1, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(4173), 1, + ACTIONS(4187), 1, anon_sym_DOT, - STATE(1598), 4, + STATE(1603), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [64312] = 3, + [64450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_COMMA, + ACTIONS(4193), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4189), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(4175), 6, + ACTIONS(4195), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64327] = 3, + [64482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4011), 1, anon_sym_LBRACK, - ACTIONS(4179), 6, - anon_sym_COMMA, + ACTIONS(4199), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64342] = 3, + STATE(1613), 1, + sym_parameter_list, + STATE(1556), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(4183), 6, + ACTIONS(4201), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64357] = 3, + [64520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, + ACTIONS(4207), 1, anon_sym_LBRACK, - ACTIONS(4187), 6, + ACTIONS(4205), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64372] = 7, + [64535] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(4191), 1, + ACTIONS(4209), 1, anon_sym_RPAREN, - STATE(1476), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1505), 2, + STATE(1512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64395] = 7, + [64558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3917), 1, + ACTIONS(4213), 1, anon_sym_LBRACK, - ACTIONS(4193), 1, + ACTIONS(4211), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1588), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64418] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [64573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4195), 6, + ACTIONS(4215), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64433] = 7, + [64588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3851), 1, + ACTIONS(4219), 1, anon_sym_LPAREN2, - ACTIONS(3979), 1, - anon_sym_LBRACK, - ACTIONS(4199), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym_parameter_list, - STATE(1557), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64456] = 5, + STATE(1624), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4221), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [64604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3987), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4223), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [64618] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(4203), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1655), 1, + STATE(1660), 1, sym_parameter_list, - ACTIONS(4201), 3, + ACTIONS(4225), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64474] = 3, + [64636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(4229), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4207), 4, + ACTIONS(4231), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64488] = 5, + [64650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(4203), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1655), 1, + STATE(1660), 1, sym_parameter_list, - ACTIONS(4209), 3, + ACTIONS(4233), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64506] = 3, + [64668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4123), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 2, + ACTIONS(4235), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4213), 4, + ACTIONS(4237), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64520] = 3, + [64696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + anon_sym_LPAREN2, + STATE(1624), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4241), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [64712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 2, + ACTIONS(4244), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4217), 4, + ACTIONS(4246), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64534] = 3, + [64726] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(774), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4227), 1, + anon_sym_LBRACK, + STATE(1660), 1, + sym_parameter_list, + ACTIONS(4248), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 2, + ACTIONS(4244), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4221), 4, + ACTIONS(4246), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64548] = 3, + [64772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 2, + ACTIONS(4250), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4225), 4, + ACTIONS(4252), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64562] = 3, + [64786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 2, + ACTIONS(4250), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4225), 4, + ACTIONS(4252), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64576] = 4, + [64800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, + ACTIONS(4254), 1, + anon_sym_EQ, + ACTIONS(4137), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [64814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4256), 1, anon_sym_LPAREN2, - STATE(1635), 2, + STATE(1624), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4229), 3, + ACTIONS(4221), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64592] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(4203), 1, - anon_sym_LBRACK, - STATE(1655), 1, - sym_parameter_list, - ACTIONS(4231), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64610] = 5, + [64830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(4203), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1655), 1, + STATE(1660), 1, sym_parameter_list, - ACTIONS(4233), 3, + ACTIONS(4258), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_LPAREN2, - STATE(1621), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4237), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64644] = 5, + [64848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_LPAREN2, - ACTIONS(4203), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1655), 1, + STATE(1660), 1, sym_parameter_list, - ACTIONS(4240), 3, + ACTIONS(4260), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4242), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4244), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64676] = 3, + [64866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(4262), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4207), 4, + ACTIONS(4264), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64690] = 3, + [64880] = 4, ACTIONS(3), 1, sym_comment, - STATE(771), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 1, + ACTIONS(4266), 1, anon_sym_LPAREN2, - STATE(1634), 2, + STATE(1632), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4229), 3, + ACTIONS(4221), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64720] = 3, + [64896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 2, - anon_sym_RBRACE, + ACTIONS(4268), 1, sym_identifier, - ACTIONS(4250), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64734] = 3, + STATE(1637), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4100), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [64912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + sym_identifier, + STATE(1638), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2123), 1, + sym_enumerator, + ACTIONS(4123), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [64930] = 3, ACTIONS(3), 1, sym_comment, - STATE(1987), 1, + STATE(2206), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126133,58 +126459,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64748] = 3, + [64944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3957), 2, + ACTIONS(4271), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(4273), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(4203), 1, - anon_sym_LBRACK, - STATE(1655), 1, - sym_parameter_list, - ACTIONS(4254), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64780] = 3, + [64958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 2, + ACTIONS(4275), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4258), 4, + ACTIONS(4277), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64794] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - sym_identifier, - STATE(1632), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2048), 1, - sym_enumerator, - ACTIONS(4135), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [64812] = 3, + [64972] = 3, ACTIONS(3), 1, sym_comment, - STATE(1812), 1, + STATE(2085), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126192,45 +126492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4260), 1, - anon_sym_LPAREN2, - STATE(1621), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4229), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_LPAREN2, - STATE(1621), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4229), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4264), 1, - anon_sym_EQ, - ACTIONS(4105), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [64872] = 3, + [64986] = 3, ACTIONS(3), 1, sym_comment, - STATE(2011), 1, + STATE(1756), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126238,573 +126503,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64886] = 4, + [65000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, - sym_identifier, - STATE(1638), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4116), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [64902] = 3, + ACTIONS(4279), 1, + anon_sym_LPAREN2, + STATE(1617), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4221), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [65016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 2, + ACTIONS(4281), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4221), 4, + ACTIONS(4283), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4135), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64930] = 2, + [65030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4269), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3855), 1, anon_sym_LPAREN2, + ACTIONS(4227), 1, anon_sym_LBRACK, - anon_sym_COLON, - [64941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 1, - anon_sym_COMMA, - ACTIONS(4139), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [64954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4273), 5, + STATE(1660), 1, + sym_parameter_list, + ACTIONS(4285), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [64965] = 2, + [65048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 5, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4227), 1, + anon_sym_LBRACK, + STATE(1660), 1, + sym_parameter_list, + ACTIONS(4149), 2, anon_sym_COMMA, anon_sym_RPAREN, + [65065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [64976] = 2, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + STATE(1831), 1, + sym_argument_list, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [65082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 5, + ACTIONS(4291), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [64987] = 2, + [65093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 5, + ACTIONS(4293), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [64998] = 2, + [65104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 5, + ACTIONS(4295), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65009] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(4283), 1, - sym_identifier, - STATE(1056), 1, - sym_field_declaration_list, - STATE(1816), 1, - sym_ms_declspec_modifier, - [65028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - ACTIONS(4287), 1, - anon_sym_COLON_COLON, - STATE(1828), 1, - sym_argument_list, - ACTIONS(4285), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(4203), 1, - anon_sym_LBRACK, - STATE(1655), 1, - sym_parameter_list, - ACTIONS(4077), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65062] = 2, + [65115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4289), 5, + ACTIONS(4297), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65073] = 2, + [65126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4299), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65084] = 6, + [65137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, + ACTIONS(3865), 1, sym_identifier, - ACTIONS(4293), 1, + ACTIONS(4301), 1, aux_sym_preproc_if_token2, - STATE(1594), 1, + STATE(1609), 1, sym_enumerator, - STATE(1683), 1, + STATE(1695), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1684), 1, + STATE(1701), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - [65103] = 6, + [65156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [65167] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2871), 1, + ACTIONS(2813), 1, anon_sym_LBRACE, - ACTIONS(4295), 1, + ACTIONS(4305), 1, sym_identifier, - STATE(1064), 1, + STATE(1057), 1, sym_field_declaration_list, - STATE(1745), 1, + STATE(1804), 1, sym_ms_declspec_modifier, - [65122] = 2, + [65186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 5, + ACTIONS(4307), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65133] = 2, + [65197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 5, + ACTIONS(4309), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65144] = 2, + [65208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 5, + ACTIONS(4311), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65155] = 2, + [65219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 5, + ACTIONS(4313), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65166] = 2, + [65230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2813), 1, + anon_sym_LBRACE, + ACTIONS(4315), 1, sym_identifier, - [65176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 1, - anon_sym_COMMA, - ACTIONS(4307), 1, - anon_sym_RPAREN, - STATE(1798), 1, - aux_sym_parameter_list_repeat1, - STATE(1803), 1, - aux_sym__old_style_parameter_list_repeat1, - [65192] = 4, + STATE(1026), 1, + sym_field_declaration_list, + STATE(1766), 1, + sym_ms_declspec_modifier, + [65249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4317), 5, anon_sym_COMMA, - STATE(1687), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4311), 2, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [65206] = 4, + [65260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(4319), 1, anon_sym_COMMA, - STATE(1688), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4315), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65220] = 4, + ACTIONS(4189), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [65273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4321), 5, anon_sym_COMMA, - STATE(1663), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4320), 2, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [65234] = 5, - ACTIONS(3579), 1, + [65284] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - aux_sym_preproc_include_token2, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4326), 1, - sym_preproc_arg, - STATE(1919), 1, - sym_preproc_params, - [65250] = 5, - ACTIONS(3579), 1, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(4323), 1, + anon_sym_SEMI, + STATE(1668), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65298] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4328), 1, + ACTIONS(4325), 1, aux_sym_preproc_include_token2, - ACTIONS(4330), 1, - sym_preproc_arg, - STATE(1913), 1, - sym_preproc_params, - [65266] = 5, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4324), 1, + ACTIONS(4327), 1, anon_sym_LPAREN, - ACTIONS(4332), 1, - aux_sym_preproc_include_token2, - ACTIONS(4334), 1, + ACTIONS(4329), 1, sym_preproc_arg, - STATE(1906), 1, + STATE(1925), 1, sym_preproc_params, - [65282] = 5, - ACTIONS(3579), 1, + [65314] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_DQUOTE, - ACTIONS(4338), 1, - aux_sym_string_literal_token1, - ACTIONS(4340), 1, - sym_escape_sequence, - STATE(1693), 1, - aux_sym_string_literal_repeat1, - [65298] = 4, + ACTIONS(4331), 1, + anon_sym_COMMA, + STATE(1670), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4333), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4342), 1, + ACTIONS(4335), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65312] = 5, - ACTIONS(3579), 1, + [65342] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4344), 1, - aux_sym_preproc_include_token2, - ACTIONS(4346), 1, - sym_preproc_arg, - STATE(1896), 1, - sym_preproc_params, - [65328] = 4, + ACTIONS(3865), 1, + sym_identifier, + ACTIONS(4337), 1, + aux_sym_preproc_if_token2, + STATE(1695), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [65356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4331), 1, anon_sym_COMMA, - STATE(1661), 1, + STATE(1735), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4348), 2, + ACTIONS(4339), 2, anon_sym_RPAREN, anon_sym_COLON, - [65342] = 4, + [65370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4350), 1, + ACTIONS(4341), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65356] = 5, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4352), 1, - aux_sym_preproc_include_token2, - ACTIONS(4354), 1, - sym_preproc_arg, - STATE(1845), 1, - sym_preproc_params, - [65372] = 4, + [65384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(1663), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4358), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65386] = 4, + STATE(1672), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4346), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [65398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 1, + ACTIONS(4348), 1, anon_sym___except, - ACTIONS(4362), 1, + ACTIONS(4350), 1, anon_sym___finally, - STATE(276), 2, + STATE(319), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65400] = 4, + [65412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + STATE(1852), 1, + sym_argument_list, + ACTIONS(4352), 2, anon_sym_COMMA, - STATE(1675), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4367), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65414] = 4, + anon_sym_RBRACK_RBRACK, + [65426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_COMMA, - STATE(1675), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4369), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65428] = 5, - ACTIONS(3579), 1, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(4301), 1, + aux_sym_preproc_if_token2, + STATE(1701), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2112), 1, + sym_enumerator, + [65442] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4371), 1, + ACTIONS(4354), 1, anon_sym_DQUOTE, - ACTIONS(4373), 1, + ACTIONS(4356), 1, aux_sym_string_literal_token1, - ACTIONS(4375), 1, + ACTIONS(4358), 1, sym_escape_sequence, STATE(1698), 1, aux_sym_string_literal_repeat1, - [65444] = 4, + [65458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(4019), 1, + anon_sym_COMMA, + STATE(1672), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4360), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(4377), 1, + [65472] = 4, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_SQUOTE, + STATE(1699), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4364), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_COMMA, + STATE(1684), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4366), 2, anon_sym_SEMI, - STATE(1488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65458] = 4, + anon_sym___attribute__, + [65500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4379), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - STATE(1671), 2, + STATE(1688), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65472] = 5, - ACTIONS(3579), 1, + [65514] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4327), 1, anon_sym_LPAREN, - ACTIONS(4381), 1, + ACTIONS(4370), 1, aux_sym_preproc_include_token2, - ACTIONS(4383), 1, + ACTIONS(4372), 1, sym_preproc_arg, - STATE(1854), 1, + STATE(1877), 1, sym_preproc_params, - [65488] = 4, - ACTIONS(3), 1, + [65530] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3870), 1, - sym_identifier, - ACTIONS(4385), 1, - aux_sym_preproc_if_token2, - STATE(1683), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65502] = 5, + ACTIONS(4374), 1, + anon_sym_DQUOTE, + ACTIONS(4376), 1, + aux_sym_string_literal_token1, + ACTIONS(4378), 1, + sym_escape_sequence, + STATE(1708), 1, + aux_sym_string_literal_repeat1, + [65546] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4356), 1, + aux_sym_string_literal_token1, + ACTIONS(4358), 1, + sym_escape_sequence, + ACTIONS(4380), 1, + anon_sym_DQUOTE, + STATE(1698), 1, + aux_sym_string_literal_repeat1, + [65562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(4293), 1, - aux_sym_preproc_if_token2, + ACTIONS(4382), 1, + anon_sym_COMMA, STATE(1684), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1979), 1, - sym_enumerator, - [65518] = 4, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4385), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [65576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, - sym_identifier, + ACTIONS(3838), 1, + anon_sym___attribute__, ACTIONS(4387), 1, - aux_sym_preproc_if_token2, - STATE(1586), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65532] = 5, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1487), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65590] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3899), 1, - sym_identifier, ACTIONS(4389), 1, - aux_sym_preproc_if_token2, - STATE(1593), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1979), 1, - sym_enumerator, - [65548] = 4, - ACTIONS(3), 1, + anon_sym_SQUOTE, + STATE(1699), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4364), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65604] = 5, + ACTIONS(3589), 1, sym_comment, + ACTIONS(4327), 1, + anon_sym_LPAREN, ACTIONS(4391), 1, - anon_sym___except, + aux_sym_preproc_include_token2, ACTIONS(4393), 1, - anon_sym___finally, - STATE(346), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65562] = 4, + sym_preproc_arg, + STATE(1929), 1, + sym_preproc_params, + [65620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, ACTIONS(4395), 1, anon_sym_SEMI, - STATE(1678), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65576] = 4, + [65634] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3838), 1, + anon_sym___attribute__, ACTIONS(4397), 1, - anon_sym_COMMA, - STATE(1687), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4400), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65590] = 4, + anon_sym_SEMI, + STATE(1724), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(4399), 1, anon_sym_COMMA, - STATE(1690), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4402), 2, + ACTIONS(4401), 1, anon_sym_RPAREN, - anon_sym_COLON, - [65604] = 5, - ACTIONS(3579), 1, + STATE(1807), 1, + aux_sym_parameter_list_repeat1, + STATE(1826), 1, + aux_sym__old_style_parameter_list_repeat1, + [65664] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4404), 1, - aux_sym_preproc_include_token2, - ACTIONS(4406), 1, - sym_preproc_arg, - STATE(1862), 1, - sym_preproc_params, - [65620] = 4, + ACTIONS(4403), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [65674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_COMMA, - STATE(1690), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4411), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65634] = 4, + ACTIONS(4405), 1, + anon_sym___except, + ACTIONS(4407), 1, + anon_sym___finally, + STATE(199), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, - anon_sym_COMMA, - STATE(1673), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4413), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65648] = 4, - ACTIONS(3579), 1, + ACTIONS(4409), 1, + anon_sym___except, + ACTIONS(4411), 1, + anon_sym___finally, + STATE(319), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65702] = 5, + ACTIONS(3589), 1, sym_comment, + ACTIONS(4327), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + aux_sym_preproc_include_token2, ACTIONS(4415), 1, - anon_sym_SQUOTE, - STATE(1711), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4417), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65662] = 5, - ACTIONS(3579), 1, + sym_preproc_arg, + STATE(1861), 1, + sym_preproc_params, + [65718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, + sym_identifier, + ACTIONS(4417), 1, + aux_sym_preproc_if_token2, + STATE(1575), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [65732] = 5, + ACTIONS(3589), 1, sym_comment, ACTIONS(4419), 1, anon_sym_DQUOTE, @@ -126812,4991 +127046,5082 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(4423), 1, sym_escape_sequence, - STATE(1712), 1, + STATE(1736), 1, aux_sym_string_literal_repeat1, - [65678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 1, - anon_sym_COMMA, - STATE(1675), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4425), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65692] = 4, - ACTIONS(3), 1, + [65748] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, + ACTIONS(4425), 1, + anon_sym_DQUOTE, ACTIONS(4427), 1, - anon_sym_SEMI, - STATE(1488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 1, - anon_sym_COMMA, - STATE(1676), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4429), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65720] = 4, - ACTIONS(3579), 1, + aux_sym_string_literal_token1, + ACTIONS(4429), 1, + sym_escape_sequence, + STATE(1683), 1, + aux_sym_string_literal_repeat1, + [65764] = 5, + ACTIONS(3589), 1, sym_comment, ACTIONS(4431), 1, + anon_sym_DQUOTE, + ACTIONS(4433), 1, + aux_sym_string_literal_token1, + ACTIONS(4436), 1, + sym_escape_sequence, + STATE(1698), 1, + aux_sym_string_literal_repeat1, + [65780] = 4, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4439), 1, anon_sym_SQUOTE, - STATE(1711), 1, + STATE(1699), 1, aux_sym_char_literal_repeat1, - ACTIONS(4417), 2, + ACTIONS(4441), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65734] = 5, - ACTIONS(3579), 1, + [65794] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4444), 1, + anon_sym_DQUOTE, + ACTIONS(4446), 1, aux_sym_string_literal_token1, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_escape_sequence, - ACTIONS(4433), 1, - anon_sym_DQUOTE, - STATE(1712), 1, + STATE(1676), 1, aux_sym_string_literal_repeat1, - [65750] = 4, + [65810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(4450), 1, + aux_sym_preproc_if_token2, + STATE(1587), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2112), 1, + sym_enumerator, + [65826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4435), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1671), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65764] = 4, + [65840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4437), 1, + ACTIONS(4454), 1, anon_sym_SEMI, - STATE(1695), 2, + STATE(1721), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65778] = 4, + [65854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(3855), 1, + anon_sym_LPAREN2, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4456), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter_list, + [65870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, anon_sym_COMMA, - STATE(1701), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4442), 2, + STATE(1716), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4458), 2, anon_sym_SEMI, anon_sym___attribute__, - [65792] = 4, + [65884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(4444), 1, - anon_sym_SEMI, - STATE(1488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65806] = 4, - ACTIONS(3), 1, + ACTIONS(4460), 1, + anon_sym_COMMA, + STATE(1706), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4463), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65898] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4446), 1, - anon_sym___except, - ACTIONS(4448), 1, - anon_sym___finally, - STATE(258), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65820] = 4, + ACTIONS(4465), 1, + anon_sym_SQUOTE, + STATE(1699), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4364), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65912] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4356), 1, + aux_sym_string_literal_token1, + ACTIONS(4358), 1, + sym_escape_sequence, + ACTIONS(4467), 1, + anon_sym_DQUOTE, + STATE(1698), 1, + aux_sym_string_literal_repeat1, + [65928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 1, + ACTIONS(4469), 1, anon_sym___except, - ACTIONS(4452), 1, + ACTIONS(4471), 1, anon_sym___finally, - STATE(170), 2, + STATE(300), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65834] = 5, - ACTIONS(3579), 1, + [65942] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_DQUOTE, - ACTIONS(4456), 1, - aux_sym_string_literal_token1, - ACTIONS(4458), 1, - sym_escape_sequence, - STATE(1729), 1, - aux_sym_string_literal_repeat1, - [65850] = 4, + ACTIONS(4473), 1, + anon_sym_COMMA, + STATE(1712), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4475), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(4460), 1, - anon_sym_SEMI, - STATE(1725), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65864] = 4, + ACTIONS(4123), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [65966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(4462), 1, - anon_sym_SEMI, - STATE(1699), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65878] = 4, + ACTIONS(4477), 1, + anon_sym_COMMA, + STATE(1712), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4480), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4464), 1, + ACTIONS(4482), 1, anon_sym_SEMI, - STATE(1715), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65892] = 5, - ACTIONS(3579), 1, + [65994] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4327), 1, anon_sym_LPAREN, - ACTIONS(4466), 1, + ACTIONS(4484), 1, aux_sym_preproc_include_token2, - ACTIONS(4468), 1, + ACTIONS(4486), 1, sym_preproc_arg, - STATE(1885), 1, + STATE(1899), 1, sym_preproc_params, - [65908] = 4, + [66010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym___except, - ACTIONS(4472), 1, - anon_sym___finally, - STATE(103), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65922] = 4, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4474), 1, - anon_sym_SQUOTE, - STATE(1711), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4476), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65936] = 5, - ACTIONS(3579), 1, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(4488), 1, + anon_sym_SEMI, + STATE(1685), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66024] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, - anon_sym_DQUOTE, - ACTIONS(4481), 1, - aux_sym_string_literal_token1, - ACTIONS(4484), 1, - sym_escape_sequence, - STATE(1712), 1, - aux_sym_string_literal_repeat1, - [65952] = 4, + ACTIONS(3929), 1, + anon_sym_COMMA, + STATE(1684), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4490), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4487), 1, + ACTIONS(4492), 1, anon_sym_SEMI, - STATE(1702), 2, + STATE(1727), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65966] = 4, - ACTIONS(3579), 1, + [66052] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, - anon_sym_SQUOTE, - STATE(1711), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4417), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65980] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(1730), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4496), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, + anon_sym___except, + ACTIONS(4500), 1, + anon_sym___finally, + STATE(103), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4491), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1722), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65994] = 4, + [66094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66008] = 5, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4421), 1, - aux_sym_string_literal_token1, - ACTIONS(4423), 1, - sym_escape_sequence, - ACTIONS(4495), 1, - anon_sym_DQUOTE, - STATE(1712), 1, - aux_sym_string_literal_repeat1, - [66024] = 4, + [66108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(1701), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4497), 2, - anon_sym_SEMI, + ACTIONS(3838), 1, anon_sym___attribute__, - [66038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4499), 1, - anon_sym___except, - ACTIONS(4501), 1, - anon_sym___finally, - STATE(276), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66052] = 4, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4503), 1, - anon_sym_SQUOTE, - STATE(1711), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4417), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - STATE(1842), 1, - sym_argument_list, - ACTIONS(4505), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [66080] = 5, - ACTIONS(3579), 1, + ACTIONS(4506), 1, + anon_sym_SEMI, + STATE(1487), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66122] = 5, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4327), 1, anon_sym_LPAREN, - ACTIONS(4507), 1, + ACTIONS(4508), 1, aux_sym_preproc_include_token2, - ACTIONS(4509), 1, + ACTIONS(4510), 1, sym_preproc_arg, - STATE(1860), 1, + STATE(1911), 1, sym_preproc_params, - [66096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [66106] = 4, + [66138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4513), 1, + ACTIONS(4512), 1, anon_sym_SEMI, - STATE(1716), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66120] = 4, + [66152] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4327), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + aux_sym_preproc_include_token2, + ACTIONS(4516), 1, + sym_preproc_arg, + STATE(1921), 1, + sym_preproc_params, + [66168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4515), 1, + ACTIONS(4518), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1733), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66134] = 4, + [66182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4517), 1, + ACTIONS(4520), 1, anon_sym_SEMI, - STATE(1488), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66148] = 4, + [66196] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4327), 1, + anon_sym_LPAREN, + ACTIONS(4522), 1, + aux_sym_preproc_include_token2, + ACTIONS(4524), 1, + sym_preproc_arg, + STATE(1928), 1, + sym_preproc_params, + [66212] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4327), 1, + anon_sym_LPAREN, + ACTIONS(4526), 1, + aux_sym_preproc_include_token2, + ACTIONS(4528), 1, + sym_preproc_arg, + STATE(1909), 1, + sym_preproc_params, + [66228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(1706), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4530), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 1, + anon_sym___except, + ACTIONS(4534), 1, + anon_sym___finally, + STATE(311), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 1, + anon_sym_COMMA, + STATE(1710), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4536), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4519), 1, + ACTIONS(4538), 1, anon_sym_SEMI, - STATE(1668), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66162] = 4, + [66284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4521), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - STATE(1726), 2, + STATE(1713), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66176] = 5, - ACTIONS(3579), 1, + [66298] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4542), 1, + anon_sym_COMMA, + STATE(1735), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4545), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66312] = 5, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4356), 1, aux_sym_string_literal_token1, - ACTIONS(4423), 1, + ACTIONS(4358), 1, sym_escape_sequence, - ACTIONS(4523), 1, + ACTIONS(4547), 1, anon_sym_DQUOTE, - STATE(1712), 1, + STATE(1698), 1, aux_sym_string_literal_repeat1, - [66192] = 5, - ACTIONS(3579), 1, + [66328] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4525), 1, - anon_sym_DQUOTE, - ACTIONS(4527), 1, - aux_sym_string_literal_token1, - ACTIONS(4529), 1, + ACTIONS(4549), 1, + anon_sym_SQUOTE, + STATE(1699), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4364), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(1717), 1, - aux_sym_string_literal_repeat1, - [66208] = 5, + [66342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4531), 1, + ACTIONS(3631), 1, anon_sym_RPAREN, - STATE(1655), 1, - sym_parameter_list, - [66224] = 4, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4533), 1, - aux_sym_preproc_include_token2, - ACTIONS(4535), 1, - anon_sym_LPAREN2, - STATE(2159), 1, - sym_preproc_argument_list, - [66237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 1, + ACTIONS(4551), 1, anon_sym_COMMA, - ACTIONS(4539), 1, - anon_sym_RPAREN, - STATE(1822), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66250] = 4, + STATE(1738), 1, + aux_sym_preproc_argument_list_repeat1, + [66355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(3336), 1, + ACTIONS(4554), 1, anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [66263] = 3, - ACTIONS(3579), 1, + ACTIONS(4556), 1, + anon_sym_COLON, + STATE(1790), 1, + sym_gnu_asm_clobber_list, + [66368] = 3, + ACTIONS(3589), 1, sym_comment, - STATE(1714), 1, + STATE(1737), 1, aux_sym_char_literal_repeat1, - ACTIONS(4541), 2, + ACTIONS(4558), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66274] = 2, + [66379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 3, + ACTIONS(4560), 1, + anon_sym_COMMA, + ACTIONS(4562), 1, + anon_sym_RBRACK_RBRACK, + STATE(1765), 1, + aux_sym_attribute_declaration_repeat1, + [66392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4564), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66283] = 4, + [66401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(4566), 1, + anon_sym_COMMA, + ACTIONS(4568), 1, anon_sym_RPAREN, - STATE(1817), 1, - sym_gnu_asm_output_operand_list, - [66296] = 4, + STATE(1807), 1, + aux_sym_parameter_list_repeat1, + [66414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 1, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, anon_sym_RPAREN, - ACTIONS(4547), 1, - anon_sym_COLON, - STATE(1821), 1, - sym_gnu_asm_input_operand_list, - [66309] = 4, + STATE(1760), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [66427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4560), 1, anon_sym_COMMA, - ACTIONS(4551), 1, + ACTIONS(4574), 1, anon_sym_RBRACK_RBRACK, - STATE(1765), 1, + STATE(1741), 1, aux_sym_attribute_declaration_repeat1, - [66322] = 4, + [66440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4553), 1, + ACTIONS(4576), 1, anon_sym_SEMI, - STATE(2168), 1, + STATE(2200), 1, sym_attribute_specifier, - [66335] = 3, + [66453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 1, + ACTIONS(4578), 3, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4105), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [66346] = 2, + anon_sym_DOT, + [66462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4557), 3, + ACTIONS(3330), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [66355] = 4, - ACTIONS(3), 1, + ACTIONS(4580), 1, + anon_sym_RPAREN, + STATE(1750), 1, + aux_sym_generic_expression_repeat1, + [66475] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACE, - ACTIONS(4559), 1, - sym_identifier, - STATE(1180), 1, - sym_enumerator_list, - [66368] = 4, + ACTIONS(4582), 1, + aux_sym_preproc_include_token2, + ACTIONS(4584), 1, + anon_sym_LPAREN2, + STATE(1978), 1, + sym_preproc_argument_list, + [66488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_RBRACE, - ACTIONS(4561), 1, + ACTIONS(4586), 1, anon_sym_COMMA, - STATE(1744), 1, - aux_sym_initializer_list_repeat1, - [66381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(4564), 1, - sym_identifier, - STATE(1034), 1, - sym_field_declaration_list, - [66394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(4568), 1, - anon_sym_SEMI, - STATE(2117), 1, - sym_attribute_specifier, - [66416] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_COLON, - ACTIONS(4063), 1, + ACTIONS(4589), 1, anon_sym_RPAREN, - STATE(1774), 1, - sym_gnu_asm_output_operand_list, - [66429] = 4, + STATE(1750), 1, + aux_sym_generic_expression_repeat1, + [66501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3551), 1, anon_sym_COMMA, - ACTIONS(4570), 1, - anon_sym_SEMI, - STATE(1780), 1, - aux_sym__declaration_declarator_repeat1, - [66442] = 4, + ACTIONS(4591), 1, + anon_sym_RPAREN, + STATE(1738), 1, + aux_sym_preproc_argument_list_repeat1, + [66514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4593), 3, anon_sym_COMMA, - ACTIONS(4572), 1, anon_sym_RPAREN, - STATE(1793), 1, - aux_sym_preproc_argument_list_repeat1, - [66455] = 4, + anon_sym_COLON, + [66523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(4560), 1, anon_sym_COMMA, - ACTIONS(4574), 1, - anon_sym_SEMI, - STATE(1782), 1, - aux_sym__declaration_declarator_repeat1, - [66468] = 4, + ACTIONS(4595), 1, + anon_sym_RBRACK_RBRACK, + STATE(1765), 1, + aux_sym_attribute_declaration_repeat1, + [66536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(4597), 1, + sym_identifier, + STATE(1170), 1, + sym_enumerator_list, + [66549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_COLON, + ACTIONS(4067), 1, anon_sym_RPAREN, - STATE(1734), 1, - aux_sym_argument_list_repeat1, - [66481] = 4, + STATE(1782), 1, + sym_gnu_asm_output_operand_list, + [66562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4599), 3, anon_sym_COMMA, - ACTIONS(4579), 1, anon_sym_RPAREN, - STATE(1753), 1, - aux_sym__old_style_parameter_list_repeat1, - [66494] = 4, + anon_sym_COLON, + [66571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, - anon_sym_RPAREN, - ACTIONS(4029), 1, + ACTIONS(4041), 1, anon_sym_COLON, - STATE(1738), 1, + ACTIONS(4043), 1, + anon_sym_RPAREN, + STATE(1827), 1, sym_gnu_asm_output_operand_list, - [66507] = 4, + [66584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(4574), 1, - anon_sym_SEMI, - STATE(1782), 1, - aux_sym__declaration_declarator_repeat1, - [66520] = 4, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(4601), 1, + sym_identifier, + STATE(1308), 1, + sym_enumerator_list, + [66597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(3326), 1, anon_sym_RPAREN, - STATE(1823), 1, + STATE(1789), 1, aux_sym_argument_list_repeat1, - [66533] = 4, + [66610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4583), 1, + ACTIONS(4603), 1, anon_sym_RPAREN, - STATE(1795), 1, - aux_sym_preproc_params_repeat1, - [66546] = 4, - ACTIONS(3), 1, + STATE(1763), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [66623] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4585), 1, - anon_sym_RPAREN, - ACTIONS(4587), 1, - anon_sym_COLON, - STATE(1762), 1, - sym_gnu_asm_clobber_list, - [66559] = 4, + STATE(1686), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4605), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4609), 1, anon_sym_RPAREN, - ACTIONS(4591), 1, - anon_sym_COLON, - STATE(1932), 1, - sym_gnu_asm_goto_list, - [66572] = 4, + ACTIONS(4607), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [66645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4611), 1, anon_sym_COMMA, - ACTIONS(4595), 1, + ACTIONS(4614), 1, anon_sym_RPAREN, - STATE(1798), 1, - aux_sym_parameter_list_repeat1, - [66585] = 4, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym_LPAREN2, - ACTIONS(4597), 1, - aux_sym_preproc_include_token2, - STATE(2159), 1, - sym_preproc_argument_list, - [66598] = 4, + STATE(1763), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [66658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, - anon_sym_COLON, - ACTIONS(4599), 1, + ACTIONS(4616), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1993), 1, - sym_gnu_asm_goto_list, - [66611] = 4, + anon_sym_COLON, + [66667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4618), 1, anon_sym_COMMA, - ACTIONS(4601), 1, + ACTIONS(4621), 1, anon_sym_RBRACK_RBRACK, STATE(1765), 1, aux_sym_attribute_declaration_repeat1, - [66624] = 4, + [66680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, + ACTIONS(2813), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + sym_identifier, + STATE(1066), 1, + sym_field_declaration_list, + [66693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(4603), 1, - anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_generic_expression_repeat1, - [66637] = 4, + ACTIONS(4625), 1, + anon_sym_SEMI, + STATE(1792), 1, + aux_sym__declaration_declarator_repeat1, + [66706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 1, + ACTIONS(4627), 3, anon_sym_COMMA, - ACTIONS(4608), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [66650] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [66715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, + ACTIONS(4041), 1, anon_sym_COLON, - ACTIONS(4610), 1, + ACTIONS(4057), 1, anon_sym_RPAREN, - STATE(2205), 1, - sym_gnu_asm_goto_list, - [66663] = 3, - ACTIONS(3579), 1, - sym_comment, - STATE(1697), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4612), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66674] = 4, - ACTIONS(3579), 1, + STATE(1781), 1, + sym_gnu_asm_output_operand_list, + [66728] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_LPAREN2, - ACTIONS(4614), 1, - aux_sym_preproc_include_token2, - STATE(2159), 1, - sym_preproc_argument_list, - [66687] = 4, - ACTIONS(3579), 1, + ACTIONS(4629), 1, + anon_sym_RPAREN, + ACTIONS(4631), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_gnu_asm_goto_list, + [66741] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4535), 1, + ACTIONS(4584), 1, anon_sym_LPAREN2, - ACTIONS(4616), 1, + ACTIONS(4633), 1, aux_sym_preproc_include_token2, - STATE(2159), 1, + STATE(1978), 1, sym_preproc_argument_list, - [66700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - anon_sym_COMMA, - ACTIONS(4618), 1, - anon_sym_RBRACK_RBRACK, - STATE(1791), 1, - aux_sym_attribute_declaration_repeat1, - [66713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 1, - anon_sym_COLON, - ACTIONS(4620), 1, - anon_sym_RPAREN, - STATE(1766), 1, - sym_gnu_asm_clobber_list, - [66726] = 4, + [66754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3838), 1, anon_sym___attribute__, - ACTIONS(4622), 1, + ACTIONS(4635), 1, anon_sym_SEMI, - STATE(2029), 1, + STATE(2006), 1, sym_attribute_specifier, - [66739] = 4, + [66767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, - anon_sym_COLON, - ACTIONS(4624), 1, + ACTIONS(4637), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2190), 1, - sym_gnu_asm_goto_list, - [66752] = 4, + anon_sym_COLON, + [66776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - anon_sym_COLON, - ACTIONS(4626), 1, + ACTIONS(4639), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, anon_sym_RPAREN, - STATE(1813), 1, - sym_gnu_asm_input_operand_list, - [66765] = 4, + STATE(1805), 1, + aux_sym_preproc_params_repeat1, + [66789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_COLON, - ACTIONS(4033), 1, - anon_sym_RPAREN, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - [66778] = 4, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_SEMI, + STATE(1815), 1, + aux_sym__declaration_declarator_repeat1, + [66802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, + ACTIONS(4643), 3, anon_sym_COMMA, - ACTIONS(4628), 1, - anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_generic_expression_repeat1, - [66791] = 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 3, + ACTIONS(4645), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66800] = 4, + [66820] = 4, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4584), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + aux_sym_preproc_include_token2, + STATE(1978), 1, + sym_preproc_argument_list, + [66833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(4649), 1, + anon_sym_SEMI, + STATE(2027), 1, + sym_attribute_specifier, + [66846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3422), 1, anon_sym_RBRACE, - ACTIONS(4632), 1, + ACTIONS(4651), 1, anon_sym_COMMA, - STATE(1744), 1, + STATE(1780), 1, aux_sym_initializer_list_repeat1, - [66813] = 4, + [66859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, - anon_sym_COMMA, - ACTIONS(4634), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(4654), 1, + anon_sym_RPAREN, + ACTIONS(4656), 1, + anon_sym_COLON, STATE(1739), 1, - aux_sym_attribute_declaration_repeat1, - [66826] = 4, + sym_gnu_asm_input_operand_list, + [66872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(4636), 1, - anon_sym_SEMI, - STATE(1782), 1, - aux_sym__declaration_declarator_repeat1, - [66839] = 2, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_RPAREN, + STATE(1810), 1, + sym_gnu_asm_input_operand_list, + [66885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 3, + ACTIONS(4560), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66848] = 4, + ACTIONS(4660), 1, + anon_sym_RBRACK_RBRACK, + STATE(1753), 1, + aux_sym_attribute_declaration_repeat1, + [66898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [66907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(4643), 1, + ACTIONS(4664), 1, anon_sym_SEMI, - STATE(1782), 1, + STATE(1792), 1, aux_sym__declaration_declarator_repeat1, - [66861] = 4, + [66920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4666), 1, anon_sym_COMMA, - ACTIONS(4645), 1, - anon_sym_RBRACK_RBRACK, - STATE(1763), 1, - aux_sym_attribute_declaration_repeat1, - [66874] = 4, + ACTIONS(4669), 1, + anon_sym_RPAREN, + STATE(1786), 1, + aux_sym__old_style_parameter_list_repeat1, + [66933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(4647), 1, - anon_sym_COMMA, - STATE(1744), 1, - aux_sym_initializer_list_repeat1, - [66887] = 2, + ACTIONS(4039), 1, + anon_sym_RPAREN, + ACTIONS(4041), 1, + anon_sym_COLON, + STATE(1811), 1, + sym_gnu_asm_output_operand_list, + [66946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66896] = 4, + ACTIONS(4556), 1, + anon_sym_COLON, + ACTIONS(4671), 1, + anon_sym_RPAREN, + STATE(1770), 1, + sym_gnu_asm_clobber_list, + [66959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(4651), 1, + ACTIONS(3338), 1, anon_sym_RPAREN, - STATE(1793), 1, - aux_sym_preproc_argument_list_repeat1, - [66909] = 4, + STATE(1819), 1, + aux_sym_argument_list_repeat1, + [66972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(4653), 1, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4673), 1, anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [66922] = 4, + STATE(2169), 1, + sym_gnu_asm_goto_list, + [66985] = 4, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4584), 1, + anon_sym_LPAREN2, + ACTIONS(4675), 1, + aux_sym_preproc_include_token2, + STATE(1978), 1, + sym_preproc_argument_list, + [66998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 1, + ACTIONS(4677), 1, anon_sym_COMMA, - ACTIONS(4658), 1, - anon_sym_RPAREN, - STATE(1788), 1, - aux_sym_parameter_list_repeat1, - [66935] = 4, + ACTIONS(4680), 1, + anon_sym_SEMI, + STATE(1792), 1, + aux_sym__declaration_declarator_repeat1, + [67011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4537), 1, + ACTIONS(4560), 1, anon_sym_COMMA, - ACTIONS(4660), 1, + ACTIONS(4682), 1, + anon_sym_RBRACK_RBRACK, + STATE(1825), 1, + aux_sym_attribute_declaration_repeat1, + [67024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, anon_sym_RPAREN, - STATE(1733), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66948] = 4, + STATE(1819), 1, + aux_sym_argument_list_repeat1, + [67037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(3551), 1, anon_sym_COMMA, - ACTIONS(4665), 1, + ACTIONS(4684), 1, anon_sym_RPAREN, - STATE(1790), 1, - aux_sym_preproc_params_repeat1, - [66961] = 4, + STATE(1738), 1, + aux_sym_preproc_argument_list_repeat1, + [67050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(2049), 1, + anon_sym_RBRACE, + ACTIONS(4686), 1, anon_sym_COMMA, - ACTIONS(4667), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [66974] = 2, + STATE(1780), 1, + aux_sym_initializer_list_repeat1, + [67063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 3, + ACTIONS(4688), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [66983] = 4, + [67072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, - anon_sym_RPAREN, - ACTIONS(4671), 1, + ACTIONS(3551), 1, anon_sym_COMMA, - STATE(1793), 1, + ACTIONS(4690), 1, + anon_sym_RPAREN, + STATE(1738), 1, aux_sym_preproc_argument_list_repeat1, - [66996] = 4, + [67085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(4692), 1, + anon_sym_COMMA, + ACTIONS(4695), 1, + anon_sym_RPAREN, + STATE(1799), 1, + aux_sym_parameter_list_repeat1, + [67098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2813), 1, anon_sym_LBRACE, - ACTIONS(4674), 1, + ACTIONS(4697), 1, sym_identifier, - STATE(1304), 1, - sym_enumerator_list, - [67009] = 4, + STATE(1026), 1, + sym_field_declaration_list, + [67111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(4699), 1, anon_sym_COMMA, - ACTIONS(4676), 1, + ACTIONS(4702), 1, anon_sym_RPAREN, - STATE(1790), 1, + STATE(1801), 1, aux_sym_preproc_params_repeat1, - [67022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_RPAREN, - ACTIONS(4678), 1, - anon_sym_COMMA, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67035] = 4, + [67124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3346), 1, anon_sym_COMMA, - ACTIONS(3332), 1, + ACTIONS(3348), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1813), 1, aux_sym_initializer_list_repeat1, - [67048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4593), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, - anon_sym_RPAREN, - STATE(1788), 1, - aux_sym_parameter_list_repeat1, - [67061] = 4, + [67137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(4704), 1, + anon_sym_EQ, + ACTIONS(4137), 2, anon_sym_COMMA, - ACTIONS(4683), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67074] = 4, + anon_sym_RBRACE, + [67148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACE, - STATE(1778), 1, - aux_sym_initializer_list_repeat1, - [67087] = 4, + ACTIONS(2813), 1, + anon_sym_LBRACE, + ACTIONS(4706), 1, + sym_identifier, + STATE(1078), 1, + sym_field_declaration_list, + [67161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, + ACTIONS(4639), 1, anon_sym_COMMA, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_RPAREN, STATE(1801), 1, - aux_sym_generic_expression_repeat1, - [67100] = 3, - ACTIONS(3), 1, + aux_sym_preproc_params_repeat1, + [67174] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_RPAREN, - ACTIONS(4690), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [67111] = 4, + STATE(1707), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4710), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4566), 1, anon_sym_COMMA, - ACTIONS(4696), 1, + ACTIONS(4712), 1, anon_sym_RPAREN, - STATE(1753), 1, - aux_sym__old_style_parameter_list_repeat1, - [67124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(4698), 1, - sym_identifier, - STATE(1064), 1, - sym_field_declaration_list, - [67137] = 4, - ACTIONS(3579), 1, + STATE(1799), 1, + aux_sym_parameter_list_repeat1, + [67198] = 4, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4535), 1, + ACTIONS(4584), 1, anon_sym_LPAREN2, - ACTIONS(4700), 1, + ACTIONS(4714), 1, aux_sym_preproc_include_token2, - STATE(2159), 1, + STATE(1978), 1, sym_preproc_argument_list, - [67150] = 4, + [67211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3164), 1, anon_sym_LBRACE, - ACTIONS(4702), 1, + ACTIONS(4716), 1, sym_identifier, - STATE(1304), 1, + STATE(1308), 1, sym_enumerator_list, - [67163] = 3, - ACTIONS(3579), 1, + [67224] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1692), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4704), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67174] = 4, + ACTIONS(4556), 1, + anon_sym_COLON, + ACTIONS(4718), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym_gnu_asm_clobber_list, + [67237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4720), 1, + anon_sym_RPAREN, + STATE(1822), 1, + sym_gnu_asm_input_operand_list, + [67250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3841), 1, + ACTIONS(4722), 1, anon_sym_SEMI, - STATE(1755), 1, + STATE(1785), 1, aux_sym__declaration_declarator_repeat1, - [67187] = 4, + [67263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4706), 1, - sym_identifier, - STATE(1894), 1, - sym_variadic_parameter, - [67200] = 2, + ACTIONS(2053), 1, + anon_sym_RBRACE, + ACTIONS(4724), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_initializer_list_repeat1, + [67276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3320), 1, + anon_sym_COMMA, + ACTIONS(3322), 1, + anon_sym_RBRACE, + STATE(1796), 1, + aux_sym_initializer_list_repeat1, + [67289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(4625), 1, + anon_sym_SEMI, + STATE(1792), 1, + aux_sym__declaration_declarator_repeat1, + [67302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 3, + ACTIONS(3324), 1, anon_sym_COMMA, + ACTIONS(3334), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67209] = 4, + STATE(1794), 1, + aux_sym_argument_list_repeat1, + [67315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - anon_sym_COLON, - ACTIONS(4710), 1, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(4726), 1, anon_sym_RPAREN, - STATE(1758), 1, - sym_gnu_asm_input_operand_list, - [67222] = 2, + STATE(1819), 1, + aux_sym_argument_list_repeat1, + [67328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 3, + ACTIONS(3330), 1, anon_sym_COMMA, + ACTIONS(4728), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67231] = 4, + STATE(1750), 1, + aux_sym_generic_expression_repeat1, + [67341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, - anon_sym_COLON, - ACTIONS(4714), 1, + ACTIONS(3404), 1, anon_sym_RPAREN, - STATE(1759), 1, - sym_gnu_asm_clobber_list, - [67244] = 3, - ACTIONS(3579), 1, + ACTIONS(4730), 1, + anon_sym_COMMA, + STATE(1819), 1, + aux_sym_argument_list_repeat1, + [67354] = 3, + ACTIONS(3589), 1, sym_comment, - STATE(1720), 1, + STATE(1678), 1, aux_sym_char_literal_repeat1, - ACTIONS(4716), 2, + ACTIONS(4733), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67255] = 4, + [67365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym___attribute__, - ACTIONS(4718), 1, - anon_sym_SEMI, - STATE(2031), 1, - sym_attribute_specifier, - [67268] = 4, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4735), 1, + anon_sym_RPAREN, + STATE(2078), 1, + sym_gnu_asm_goto_list, + [67378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(4720), 1, - sym_identifier, - STATE(1062), 1, - sym_field_declaration_list, - [67281] = 4, + ACTIONS(4556), 1, + anon_sym_COLON, + ACTIONS(4737), 1, + anon_sym_RPAREN, + STATE(1823), 1, + sym_gnu_asm_clobber_list, + [67391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, + ACTIONS(4631), 1, anon_sym_COLON, - ACTIONS(4722), 1, + ACTIONS(4739), 1, anon_sym_RPAREN, - STATE(1771), 1, - sym_gnu_asm_input_operand_list, - [67294] = 2, + STATE(2084), 1, + sym_gnu_asm_goto_list, + [67404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 3, + ACTIONS(3324), 1, anon_sym_COMMA, + ACTIONS(4741), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67303] = 2, + STATE(1819), 1, + aux_sym_argument_list_repeat1, + [67417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 3, + ACTIONS(4560), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [67312] = 4, + ACTIONS(4743), 1, + anon_sym_RBRACK_RBRACK, + STATE(1765), 1, + aux_sym_attribute_declaration_repeat1, + [67430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(4728), 1, + ACTIONS(4747), 1, anon_sym_RPAREN, - STATE(1793), 1, - aux_sym_preproc_argument_list_repeat1, - [67325] = 4, + STATE(1786), 1, + aux_sym__old_style_parameter_list_repeat1, + [67443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, + ACTIONS(4656), 1, anon_sym_COLON, - ACTIONS(4730), 1, + ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(1773), 1, - sym_gnu_asm_clobber_list, - [67338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 1, - anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_RPAREN, - STATE(1822), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [67351] = 4, + STATE(1788), 1, + sym_gnu_asm_input_operand_list, + [67456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(3316), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67364] = 3, + ACTIONS(3838), 1, + anon_sym___attribute__, + ACTIONS(4751), 1, + anon_sym_SEMI, + STATE(2056), 1, + sym_attribute_specifier, + [67469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1898), 1, - sym_parenthesized_expression, - [67374] = 3, + ACTIONS(2085), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4753), 1, + sym_identifier, + STATE(1875), 1, + sym_variadic_parameter, + [67482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, - anon_sym_LPAREN2, - STATE(2149), 1, - sym_argument_list, - [67384] = 3, + ACTIONS(4755), 1, + sym_identifier, + STATE(1893), 1, + sym_attribute, + [67492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN2, - STATE(439), 1, - sym_parenthesized_expression, - [67394] = 3, + ACTIONS(4757), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [67500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_compound_statement, - [67404] = 2, + ACTIONS(4759), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [67508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67412] = 3, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1867), 1, + sym_parenthesized_expression, + [67518] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, STATE(117), 1, sym_compound_statement, - [67422] = 3, + [67528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4763), 1, + sym_identifier, + ACTIONS(4765), 1, anon_sym_LPAREN2, - STATE(2125), 1, - sym_parenthesized_expression, - [67432] = 3, + [67538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1872), 1, - sym_parenthesized_expression, - [67442] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_compound_statement, + [67548] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1710), 1, + STATE(278), 1, sym_compound_statement, - [67452] = 3, - ACTIONS(3579), 1, + [67558] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - aux_sym_preproc_include_token2, - ACTIONS(4745), 1, - sym_preproc_arg, - [67462] = 3, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(92), 1, + sym_compound_statement, + [67568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(2121), 1, - sym_argument_list, - [67472] = 3, + STATE(1838), 1, + sym_parenthesized_expression, + [67578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(447), 1, + STATE(2075), 1, sym_parenthesized_expression, - [67482] = 3, + [67588] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1704), 1, - sym_compound_statement, - [67492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(98), 1, + STATE(1692), 1, sym_compound_statement, - [67502] = 2, + [67598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 2, + ACTIONS(4695), 2, anon_sym_COMMA, - anon_sym_SEMI, - [67510] = 3, + anon_sym_RPAREN, + [67606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_compound_statement, - [67520] = 3, + ACTIONS(3404), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(2034), 1, + STATE(422), 1, sym_parenthesized_expression, - [67530] = 3, + [67624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_compound_statement, - [67540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4749), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67548] = 3, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1874), 1, + sym_parenthesized_expression, + [67634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(1829), 1, + STATE(430), 1, sym_parenthesized_expression, - [67558] = 3, + [67644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(418), 1, + STATE(1906), 1, sym_parenthesized_expression, - [67568] = 3, - ACTIONS(3579), 1, + [67654] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(4769), 1, aux_sym_preproc_include_token2, - ACTIONS(4753), 1, + ACTIONS(4771), 1, sym_preproc_arg, - [67578] = 3, + [67664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1871), 1, + STATE(2219), 1, sym_parenthesized_expression, - [67588] = 3, + [67674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN2, - STATE(425), 1, - sym_parenthesized_expression, - [67598] = 3, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_compound_statement, + [67684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(426), 1, + STATE(1980), 1, sym_parenthesized_expression, - [67608] = 3, + [67694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1770), 1, - sym_attribute, - [67618] = 3, + ACTIONS(4773), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [67702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(419), 1, + STATE(1902), 1, sym_parenthesized_expression, - [67628] = 2, + [67712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 2, + ACTIONS(4702), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67636] = 3, + [67720] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4775), 1, + aux_sym_preproc_include_token2, + ACTIONS(4777), 1, + sym_preproc_arg, + [67730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(1719), 1, sym_compound_statement, - [67646] = 3, + [67740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1852), 1, + STATE(1915), 1, sym_parenthesized_expression, - [67656] = 3, - ACTIONS(3579), 1, + [67750] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4757), 1, + ACTIONS(4779), 1, aux_sym_preproc_include_token2, - ACTIONS(4759), 1, + ACTIONS(4781), 1, sym_preproc_arg, - [67666] = 3, + [67760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(434), 1, + STATE(409), 1, sym_parenthesized_expression, - [67676] = 2, + [67770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67684] = 3, - ACTIONS(3579), 1, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(443), 1, + sym_parenthesized_expression, + [67780] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4783), 1, aux_sym_preproc_include_token2, - ACTIONS(4763), 1, + ACTIONS(4785), 1, sym_preproc_arg, - [67694] = 3, + [67790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1884), 1, + sym_parenthesized_expression, + [67800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(442), 1, + sym_parenthesized_expression, + [67810] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1685), 1, + STATE(251), 1, sym_compound_statement, - [67704] = 2, + [67820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67712] = 3, - ACTIONS(3579), 1, + ACTIONS(4755), 1, + sym_identifier, + STATE(1783), 1, + sym_attribute, + [67830] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4765), 1, - aux_sym_preproc_include_token2, - ACTIONS(4767), 1, - sym_preproc_arg, - [67722] = 3, - ACTIONS(3579), 1, + ACTIONS(3911), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + anon_sym_COMMA, + [67840] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - aux_sym_preproc_include_token2, - ACTIONS(4771), 1, - sym_preproc_arg, - [67732] = 3, - ACTIONS(3579), 1, + ACTIONS(645), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_compound_statement, + [67850] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4773), 1, + ACTIONS(4789), 1, aux_sym_preproc_include_token2, - ACTIONS(4775), 1, + ACTIONS(4791), 1, sym_preproc_arg, - [67742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4779), 1, - anon_sym_LPAREN2, - [67752] = 2, + [67860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 2, + ACTIONS(4793), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [67760] = 3, + [67868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(1970), 1, + STATE(413), 1, sym_parenthesized_expression, - [67770] = 3, + [67878] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1719), 1, + STATE(1673), 1, sym_compound_statement, - [67780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1887), 1, - sym_parenthesized_expression, - [67790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1900), 1, - sym_parenthesized_expression, - [67800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67808] = 3, + [67888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(256), 1, + STATE(1693), 1, sym_compound_statement, - [67818] = 3, + [67898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(114), 1, - sym_compound_statement, - [67828] = 3, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + STATE(2072), 1, + sym_argument_list, + [67908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(192), 1, + STATE(181), 1, sym_compound_statement, - [67838] = 2, + [67918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 2, + ACTIONS(4669), 2, anon_sym_COMMA, - anon_sym_SEMI, - [67846] = 2, + anon_sym_RPAREN, + [67926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 2, + ACTIONS(4795), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [67854] = 2, + [67934] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4798), 1, + aux_sym_preproc_include_token2, + ACTIONS(4800), 1, + sym_preproc_arg, + [67944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 2, + ACTIONS(3440), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [67862] = 3, + anon_sym_RBRACE, + [67952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1841), 1, - sym_parenthesized_expression, - [67872] = 3, + ACTIONS(3446), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [67960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, - sym_identifier, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - [67882] = 3, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [67968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1674), 1, - sym_compound_statement, - [67892] = 3, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [67976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 1, + ACTIONS(3428), 2, anon_sym_COMMA, - ACTIONS(4791), 1, anon_sym_RBRACE, - [67902] = 3, + [67984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(2530), 1, + anon_sym_LPAREN2, + STATE(2088), 1, + sym_argument_list, + [67994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, anon_sym_LBRACE, - STATE(300), 1, + STATE(102), 1, sym_compound_statement, - [67912] = 3, + [68004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(183), 1, + STATE(292), 1, sym_compound_statement, - [67922] = 3, + [68014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4802), 1, + sym_identifier, + ACTIONS(4804), 1, anon_sym_LPAREN2, - STATE(2146), 1, - sym_parenthesized_expression, - [67932] = 3, + [68024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(1839), 1, - sym_parenthesized_expression, - [67942] = 3, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4808), 1, + anon_sym_RPAREN, + [68034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN2, - STATE(416), 1, - sym_parenthesized_expression, - [67952] = 3, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4793), 1, - aux_sym_preproc_include_token2, - ACTIONS(4795), 1, - sym_preproc_arg, - [67962] = 2, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(4810), 1, + anon_sym_RBRACE, + [68044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67970] = 3, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1864), 1, + sym_parenthesized_expression, + [68054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(196), 1, + STATE(292), 1, sym_compound_statement, - [67980] = 3, - ACTIONS(3579), 1, + [68064] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - aux_sym_preproc_include_token2, - ACTIONS(4799), 1, - sym_preproc_arg, - [67990] = 3, - ACTIONS(3579), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1850), 1, + sym_parenthesized_expression, + [68074] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(4812), 1, aux_sym_preproc_include_token2, - ACTIONS(4803), 1, + ACTIONS(4814), 1, sym_preproc_arg, - [68000] = 3, - ACTIONS(3579), 1, + [68084] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4805), 1, - aux_sym_preproc_include_token2, - ACTIONS(4807), 1, - sym_preproc_arg, - [68010] = 3, + ACTIONS(4621), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [68092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1827), 1, + STATE(2008), 1, sym_parenthesized_expression, - [68020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4809), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68028] = 3, + [68102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4813), 1, + ACTIONS(3342), 2, anon_sym_RPAREN, - [68038] = 2, + anon_sym_SEMI, + [68110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68046] = 3, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4815), 1, - aux_sym_preproc_include_token2, - ACTIONS(4817), 1, - sym_preproc_arg, - [68056] = 3, - ACTIONS(3579), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(195), 1, + sym_compound_statement, + [68120] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4816), 1, aux_sym_preproc_include_token2, - ACTIONS(4821), 1, + ACTIONS(4818), 1, sym_preproc_arg, - [68066] = 2, + [68130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 2, + ACTIONS(4820), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68074] = 3, + [68138] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4822), 1, + aux_sym_preproc_include_token2, + ACTIONS(4824), 1, + sym_preproc_arg, + [68148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(274), 1, - sym_compound_statement, - [68084] = 3, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(425), 1, + sym_parenthesized_expression, + [68158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym_compound_statement, - [68094] = 3, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(1837), 1, + sym_parenthesized_expression, + [68168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(312), 1, + STATE(169), 1, sym_compound_statement, - [68104] = 3, - ACTIONS(3579), 1, + [68178] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4826), 1, aux_sym_preproc_include_token2, ACTIONS(4828), 1, sym_preproc_arg, - [68114] = 3, + [68188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(406), 1, + STATE(447), 1, sym_parenthesized_expression, - [68124] = 2, + [68198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68132] = 2, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(428), 1, + sym_parenthesized_expression, + [68208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68140] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(252), 1, + sym_compound_statement, + [68218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_LPAREN2, - STATE(2089), 1, - sym_parenthesized_expression, - [68150] = 3, - ACTIONS(3579), 1, + ACTIONS(4755), 1, + sym_identifier, + STATE(1793), 1, + sym_attribute, + [68228] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4830), 1, aux_sym_preproc_include_token2, ACTIONS(4832), 1, sym_preproc_arg, - [68160] = 2, - ACTIONS(3), 1, + [68238] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(3436), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68168] = 3, + ACTIONS(4834), 1, + aux_sym_preproc_include_token2, + ACTIONS(4836), 1, + sym_preproc_arg, + [68248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1703), 1, - sym_compound_statement, - [68178] = 3, - ACTIONS(3579), 1, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(445), 1, + sym_parenthesized_expression, + [68258] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4838), 1, aux_sym_preproc_include_token2, - ACTIONS(4836), 1, + ACTIONS(4840), 1, sym_preproc_arg, - [68188] = 3, + [68268] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(353), 1, + STATE(294), 1, sym_compound_statement, - [68198] = 3, + [68278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(300), 1, + STATE(344), 1, sym_compound_statement, - [68208] = 3, - ACTIONS(3579), 1, + [68288] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - aux_sym_preproc_include_token2, - ACTIONS(4840), 1, - sym_preproc_arg, - [68218] = 3, - ACTIONS(3579), 1, + ACTIONS(645), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_compound_statement, + [68298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_compound_statement, + [68308] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4842), 1, aux_sym_preproc_include_token2, ACTIONS(4844), 1, sym_preproc_arg, - [68228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - anon_sym_RBRACE, - ACTIONS(4789), 1, - anon_sym_COMMA, - [68238] = 3, - ACTIONS(3579), 1, + [68318] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4846), 1, aux_sym_preproc_include_token2, ACTIONS(4848), 1, sym_preproc_arg, - [68248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1779), 1, - sym_attribute, - [68258] = 3, + [68328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(455), 1, + STATE(1997), 1, sym_parenthesized_expression, - [68268] = 3, + [68338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4755), 1, sym_identifier, - STATE(1886), 1, + STATE(1745), 1, sym_attribute, - [68278] = 3, - ACTIONS(3579), 1, + [68356] = 3, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4850), 1, - aux_sym_preproc_include_token2, ACTIONS(4852), 1, - sym_preproc_arg, - [68288] = 3, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4854), 1, aux_sym_preproc_include_token2, - ACTIONS(4856), 1, + ACTIONS(4854), 1, sym_preproc_arg, - [68298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN2, - STATE(413), 1, - sym_parenthesized_expression, - [68308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1783), 1, - sym_attribute, - [68318] = 3, + [68366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_LPAREN2, - STATE(452), 1, + STATE(439), 1, sym_parenthesized_expression, - [68328] = 3, + [68376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1870), 1, + STATE(1913), 1, sym_parenthesized_expression, - [68338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_RPAREN, - [68345] = 2, - ACTIONS(3), 1, + [68386] = 3, + ACTIONS(3589), 1, sym_comment, + ACTIONS(4856), 1, + aux_sym_preproc_include_token2, ACTIONS(4858), 1, - sym_identifier, - [68352] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [68396] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4860), 1, - sym_identifier, - [68359] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4862), 1, aux_sym_preproc_include_token2, - [68366] = 2, + ACTIONS(4862), 1, + sym_preproc_arg, + [68406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, - anon_sym_RPAREN, - [68373] = 2, + ACTIONS(4767), 1, + anon_sym_LPAREN2, + STATE(440), 1, + sym_parenthesized_expression, + [68416] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1731), 1, + sym_compound_statement, + [68426] = 3, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4864), 1, + aux_sym_preproc_include_token2, ACTIONS(4866), 1, - anon_sym_RBRACK, - [68380] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [68436] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4868), 1, - sym_identifier, - [68387] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_preproc_include_token2, ACTIONS(4870), 1, - anon_sym_RPAREN, - [68394] = 2, - ACTIONS(3579), 1, + sym_preproc_arg, + [68446] = 3, + ACTIONS(3589), 1, sym_comment, ACTIONS(4872), 1, aux_sym_preproc_include_token2, - [68401] = 2, - ACTIONS(3579), 1, - sym_comment, ACTIONS(4874), 1, - aux_sym_preproc_include_token2, - [68408] = 2, - ACTIONS(3579), 1, + sym_preproc_arg, + [68456] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4876), 1, - aux_sym_preproc_include_token2, - [68415] = 2, - ACTIONS(3579), 1, + anon_sym_RPAREN, + [68463] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4878), 1, - aux_sym_preproc_include_token2, - [68422] = 2, + anon_sym_RPAREN, + [68470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4880), 1, - aux_sym_preproc_if_token2, - [68429] = 2, + anon_sym_RPAREN, + [68477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4882), 1, - anon_sym_RBRACE, - [68436] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [68484] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4884), 1, - aux_sym_preproc_if_token2, - [68443] = 2, + aux_sym_preproc_include_token2, + [68491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4886), 1, - anon_sym_RBRACE, - [68450] = 2, - ACTIONS(3579), 1, + anon_sym_RPAREN, + [68498] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4888), 1, aux_sym_preproc_include_token2, - [68457] = 2, + [68505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4890), 1, - aux_sym_preproc_if_token2, - [68464] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [68512] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4892), 1, - anon_sym_RBRACE, - [68471] = 2, - ACTIONS(3579), 1, + aux_sym_preproc_include_token2, + [68519] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4894), 1, + anon_sym_SEMI, + [68526] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4896), 1, aux_sym_preproc_include_token2, - [68478] = 2, + [68533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(4898), 1, anon_sym_RPAREN, - [68485] = 2, - ACTIONS(3579), 1, + [68540] = 2, + ACTIONS(3589), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(4900), 1, aux_sym_preproc_include_token2, - [68492] = 2, + [68547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_SEMI, - [68499] = 2, - ACTIONS(3579), 1, - sym_comment, ACTIONS(4902), 1, - aux_sym_preproc_include_token2, - [68506] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [68554] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4904), 1, - aux_sym_preproc_if_token2, - [68513] = 2, - ACTIONS(3579), 1, + aux_sym_preproc_include_token2, + [68561] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4906), 1, aux_sym_preproc_include_token2, - [68520] = 2, - ACTIONS(3), 1, + [68568] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4908), 1, - anon_sym_RPAREN, - [68527] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4910), 1, aux_sym_preproc_include_token2, - [68534] = 2, + [68575] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4910), 1, + aux_sym_preproc_if_token2, + [68582] = 2, + ACTIONS(3589), 1, + sym_comment, ACTIONS(4912), 1, - anon_sym_SEMI, - [68541] = 2, - ACTIONS(3579), 1, + aux_sym_preproc_include_token2, + [68589] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4914), 1, aux_sym_preproc_include_token2, - [68548] = 2, - ACTIONS(3), 1, + [68596] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4916), 1, - anon_sym_LPAREN2, - [68555] = 2, + aux_sym_preproc_include_token2, + [68603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4918), 1, - aux_sym_preproc_if_token2, - [68562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_RPAREN, - [68569] = 2, + sym_primitive_type, + [68610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 1, sym_identifier, - [68576] = 2, + [68617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4922), 1, - anon_sym_COLON, - [68583] = 2, + sym_identifier, + [68624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 1, - anon_sym_RBRACK, - [68590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - anon_sym_SEMI, - [68597] = 2, + aux_sym_preproc_if_token2, + [68631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4926), 1, sym_identifier, - [68604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_RPAREN, - [68611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 1, - anon_sym_RPAREN, - [68618] = 2, - ACTIONS(3), 1, + [68638] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4928), 1, - aux_sym_preproc_if_token2, - [68625] = 2, + aux_sym_preproc_include_token2, + [68645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4930), 1, sym_identifier, - [68632] = 2, + [68652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4932), 1, - anon_sym_RBRACE, - [68639] = 2, + anon_sym_SEMI, + [68659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4934), 1, - anon_sym_RPAREN, - [68646] = 2, + anon_sym_SEMI, + [68666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4936), 1, - anon_sym_RPAREN, - [68653] = 2, + anon_sym_COLON, + [68673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4938), 1, + aux_sym_preproc_if_token2, + [68680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3400), 1, anon_sym_SEMI, - [68660] = 2, + [68687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4940), 1, - aux_sym_preproc_if_token2, - [68667] = 2, + anon_sym_SEMI, + [68694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4942), 1, - aux_sym_preproc_if_token2, - [68674] = 2, + anon_sym_RPAREN, + [68701] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3402), 1, + anon_sym_RPAREN, + [68708] = 2, + ACTIONS(3589), 1, + sym_comment, ACTIONS(4944), 1, - aux_sym_preproc_if_token2, - [68681] = 2, + aux_sym_preproc_include_token2, + [68715] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4582), 1, + aux_sym_preproc_include_token2, + [68722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4946), 1, - aux_sym_preproc_if_token2, - [68688] = 2, + anon_sym_SEMI, + [68729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4948), 1, - aux_sym_preproc_if_token2, - [68695] = 2, + anon_sym_SEMI, + [68736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3426), 1, + anon_sym_SEMI, + [68743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4950), 1, sym_identifier, - [68702] = 2, + [68750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4952), 1, - aux_sym_preproc_if_token2, - [68709] = 2, + anon_sym_COLON, + [68757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4954), 1, - anon_sym_RBRACE, - [68716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 1, - anon_sym_COMMA, - [68723] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [68764] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4956), 1, - aux_sym_preproc_if_token2, - [68730] = 2, + aux_sym_preproc_include_token2, + [68771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4958), 1, aux_sym_preproc_if_token2, - [68737] = 2, + [68778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4960), 1, - anon_sym_RBRACE, - [68744] = 2, + sym_identifier, + [68785] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3685), 1, + aux_sym_preproc_include_token2, + [68792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4962), 1, aux_sym_preproc_if_token2, - [68751] = 2, - ACTIONS(3579), 1, + [68799] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4964), 1, - aux_sym_preproc_include_token2, - [68758] = 2, + anon_sym_SEMI, + [68806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4966), 1, - aux_sym_preproc_if_token2, - [68765] = 2, - ACTIONS(3), 1, + sym_identifier, + [68813] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4968), 1, - aux_sym_preproc_if_token2, - [68772] = 2, + aux_sym_preproc_include_token2, + [68820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4970), 1, - anon_sym_LPAREN2, - [68779] = 2, + anon_sym_RPAREN, + [68827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4972), 1, anon_sym_RPAREN, - [68786] = 2, + [68834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4974), 1, - aux_sym_preproc_if_token2, - [68793] = 2, - ACTIONS(3579), 1, + anon_sym_RPAREN, + [68841] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4976), 1, - aux_sym_preproc_include_token2, - [68800] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [68848] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4978), 1, - aux_sym_preproc_if_token2, - [68807] = 2, + aux_sym_preproc_include_token2, + [68855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4980), 1, aux_sym_preproc_if_token2, - [68814] = 2, + [68862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4982), 1, - anon_sym_RPAREN, - [68821] = 2, + aux_sym_preproc_if_token2, + [68869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4984), 1, - anon_sym_SEMI, - [68828] = 2, + aux_sym_preproc_if_token2, + [68876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4986), 1, - anon_sym_SEMI, - [68835] = 2, + sym_identifier, + [68883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, - anon_sym_SEMI, - [68842] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3653), 1, - aux_sym_preproc_include_token2, - [68849] = 2, + ACTIONS(4810), 1, + anon_sym_RBRACE, + [68890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4988), 1, - aux_sym_preproc_if_token2, - [68856] = 2, + anon_sym_SEMI, + [68897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4990), 1, - sym_identifier, - [68863] = 2, + anon_sym_STAR, + [68904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4992), 1, sym_identifier, - [68870] = 2, - ACTIONS(3), 1, + [68911] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(4994), 1, - aux_sym_preproc_if_token2, - [68877] = 2, + aux_sym_preproc_include_token2, + [68918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4996), 1, - aux_sym_preproc_if_token2, - [68884] = 2, + anon_sym_SEMI, + [68925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3416), 1, anon_sym_SEMI, - [68891] = 2, + [68932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4998), 1, - anon_sym_COLON, - [68898] = 2, + anon_sym_COMMA, + [68939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(3414), 1, anon_sym_SEMI, - [68905] = 2, + [68946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_STAR, + [68953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5002), 1, - anon_sym_RPAREN, - [68912] = 2, - ACTIONS(3579), 1, + anon_sym_SEMI, + [68960] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5004), 1, - aux_sym_preproc_include_token2, - [68919] = 2, + sym_identifier, + [68967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5006), 1, - sym_identifier, - [68926] = 2, + anon_sym_RPAREN, + [68974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5008), 1, - sym_identifier, - [68933] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4700), 1, - aux_sym_preproc_include_token2, - [68940] = 2, + anon_sym_SEMI, + [68981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5010), 1, - anon_sym_LPAREN2, - [68947] = 2, + anon_sym_SEMI, + [68988] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_preproc_include_token2, + [68995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5012), 1, anon_sym_SEMI, - [68954] = 2, + [69002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5014), 1, - anon_sym_SEMI, - [68961] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69009] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5016), 1, - anon_sym_COLON, - [68968] = 2, + aux_sym_preproc_include_token2, + [69016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5018), 1, - anon_sym_LPAREN2, - [68975] = 2, + anon_sym_SEMI, + [69023] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3649), 1, + aux_sym_preproc_include_token2, + [69030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5020), 1, - sym_identifier, - [68982] = 2, + anon_sym_SEMI, + [69037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5022), 1, sym_identifier, - [68989] = 2, + [69044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5024), 1, - anon_sym_COLON, - [68996] = 2, + sym_identifier, + [69051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5026), 1, - sym_identifier, - [69003] = 2, + anon_sym_COLON, + [69058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5028), 1, aux_sym_preproc_if_token2, - [69010] = 2, + [69065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RPAREN, - [69017] = 2, + ACTIONS(3348), 1, + anon_sym_RBRACE, + [69072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, - anon_sym_RPAREN, - [69024] = 2, + ACTIONS(3392), 1, + anon_sym_SEMI, + [69079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - aux_sym_preproc_if_token2, - [69031] = 2, + ACTIONS(5030), 1, + anon_sym_SEMI, + [69086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - sym_identifier, - [69038] = 2, + ACTIONS(5032), 1, + aux_sym_preproc_if_token2, + [69093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 1, + ACTIONS(5034), 1, anon_sym_RPAREN, - [69045] = 2, + [69100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_RPAREN, - [69052] = 2, - ACTIONS(3), 1, + ACTIONS(5036), 1, + sym_identifier, + [69107] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5038), 1, - sym_identifier, - [69059] = 2, + aux_sym_preproc_include_token2, + [69114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5040), 1, - sym_identifier, - [69066] = 2, + aux_sym_preproc_if_token2, + [69121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5042), 1, - anon_sym_SEMI, - [69073] = 2, + aux_sym_preproc_if_token2, + [69128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5044), 1, - aux_sym_preproc_if_token2, - [69080] = 2, + anon_sym_SEMI, + [69135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3322), 1, + anon_sym_RBRACE, + [69142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5046), 1, - anon_sym_SEMI, - [69087] = 2, + anon_sym_RPAREN, + [69149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5048), 1, - aux_sym_preproc_if_token2, - [69094] = 2, + sym_identifier, + [69156] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4714), 1, + aux_sym_preproc_include_token2, + [69163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5050), 1, - aux_sym_preproc_if_token2, - [69101] = 2, + anon_sym_SEMI, + [69170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5052), 1, anon_sym_SEMI, - [69108] = 2, + [69177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5054), 1, sym_identifier, - [69115] = 2, - ACTIONS(2402), 1, - aux_sym_preproc_include_token2, - ACTIONS(3579), 1, - sym_comment, - [69122] = 2, + [69184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5056), 1, - aux_sym_preproc_if_token2, - [69129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_COMMA, - [69136] = 2, + anon_sym_COLON, + [69191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5058), 1, - sym_identifier, - [69143] = 2, + anon_sym_RPAREN, + [69198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5060), 1, - aux_sym_preproc_if_token2, - [69150] = 2, + sym_identifier, + [69205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5062), 1, - anon_sym_SEMI, - [69157] = 2, + anon_sym_STAR, + [69212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5064), 1, aux_sym_preproc_if_token2, - [69164] = 2, + [69219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, aux_sym_preproc_if_token2, - [69171] = 2, - ACTIONS(2406), 1, - aux_sym_preproc_include_token2, - ACTIONS(3579), 1, - sym_comment, - [69178] = 2, + [69226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5068), 1, sym_identifier, - [69185] = 2, + [69233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5070), 1, - anon_sym_RPAREN, - [69192] = 2, + sym_identifier, + [69240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5072), 1, - anon_sym_RPAREN, - [69199] = 2, + sym_identifier, + [69247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - [69206] = 2, + [69254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5074), 1, - aux_sym_preproc_if_token2, - [69213] = 2, + sym_identifier, + [69261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 1, + anon_sym_SEMI, + [69268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5076), 1, aux_sym_preproc_if_token2, - [69220] = 2, - ACTIONS(3579), 1, + [69275] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5078), 1, - aux_sym_preproc_include_token2, - [69227] = 2, + anon_sym_SEMI, + [69282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5080), 1, - anon_sym_COLON, - [69234] = 2, + aux_sym_preproc_if_token2, + [69289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5082), 1, sym_identifier, - [69241] = 2, + [69296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5084), 1, sym_identifier, - [69248] = 2, + [69303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, - sym_identifier, - [69255] = 2, + ACTIONS(3436), 1, + anon_sym_SEMI, + [69310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, - anon_sym_RBRACE, - [69262] = 2, + ACTIONS(5086), 1, + aux_sym_preproc_if_token2, + [69317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5088), 1, - anon_sym_SEMI, - [69269] = 2, + aux_sym_preproc_if_token2, + [69324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3444), 1, + anon_sym_RPAREN, + [69331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5090), 1, + anon_sym_SEMI, + [69338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 1, anon_sym_RPAREN, - [69276] = 2, + [69345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 1, + anon_sym_SEMI, + [69352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5092), 1, - sym_identifier, - [69283] = 2, + anon_sym_RPAREN, + [69359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5094), 1, - aux_sym_preproc_if_token2, - [69290] = 2, + sym_identifier, + [69366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5096), 1, aux_sym_preproc_if_token2, - [69297] = 2, + [69373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5098), 1, - anon_sym_SEMI, - [69304] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4533), 1, - aux_sym_preproc_include_token2, - [69311] = 2, + anon_sym_RPAREN, + [69380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5100), 1, - anon_sym_SEMI, - [69318] = 2, - ACTIONS(3579), 1, + anon_sym_COLON, + [69387] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5102), 1, - aux_sym_preproc_include_token2, - [69325] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(5104), 1, - aux_sym_preproc_include_token2, - [69332] = 2, + aux_sym_preproc_if_token2, + [69394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, - anon_sym_RPAREN, - [69339] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3643), 1, - aux_sym_preproc_include_token2, - [69346] = 2, + ACTIONS(5104), 1, + sym_identifier, + [69401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5106), 1, - anon_sym_RPAREN, - [69353] = 2, + anon_sym_LPAREN2, + [69408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5108), 1, - sym_identifier, - [69360] = 2, + aux_sym_preproc_if_token2, + [69415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5110), 1, sym_identifier, - [69367] = 2, + [69422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5112), 1, - anon_sym_SEMI, - [69374] = 2, + sym_identifier, + [69429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5114), 1, - anon_sym_SEMI, - [69381] = 2, + anon_sym_while, + [69436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5116), 1, - sym_identifier, - [69388] = 2, + aux_sym_preproc_if_token2, + [69443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5118), 1, - sym_identifier, - [69395] = 2, + anon_sym_RPAREN, + [69450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5120), 1, sym_identifier, - [69402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3410), 1, - anon_sym_SEMI, - [69409] = 2, + [69457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5122), 1, - anon_sym_SEMI, - [69416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3418), 1, - anon_sym_SEMI, - [69423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 1, - anon_sym_SEMI, - [69430] = 2, + sym_identifier, + [69464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5124), 1, - anon_sym_LPAREN2, - [69437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5126), 1, anon_sym_SEMI, - [69444] = 2, + [69471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, + ACTIONS(5126), 1, anon_sym_SEMI, - [69451] = 2, + [69478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, - anon_sym_LPAREN2, - [69458] = 2, + aux_sym_preproc_if_token2, + [69485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5130), 1, - anon_sym_COLON, - [69465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 1, - anon_sym_SEMI, - [69472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 1, - anon_sym_SEMI, - [69479] = 2, + anon_sym_RPAREN, + [69492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5132), 1, - anon_sym_RPAREN, - [69486] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69499] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5134), 1, - anon_sym_SEMI, - [69493] = 2, + aux_sym_preproc_include_token2, + [69506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, - anon_sym_SEMI, - [69500] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69513] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5138), 1, - anon_sym_RPAREN, - [69507] = 2, + aux_sym_preproc_include_token2, + [69520] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(3671), 1, + aux_sym_preproc_include_token2, + [69527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5140), 1, - anon_sym_while, - [69514] = 2, + anon_sym_RPAREN, + [69534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5142), 1, - anon_sym_STAR, - [69521] = 2, + anon_sym_LPAREN2, + [69541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5144), 1, - anon_sym_SEMI, - [69528] = 2, + sym_identifier, + [69548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4791), 1, - anon_sym_RBRACE, - [69535] = 2, - ACTIONS(3579), 1, - sym_comment, ACTIONS(5146), 1, - aux_sym_preproc_include_token2, - [69542] = 2, + anon_sym_RPAREN, + [69555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5148), 1, - sym_identifier, - [69549] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4616), 1, - aux_sym_preproc_include_token2, - [69556] = 2, - ACTIONS(3579), 1, + anon_sym_STAR, + [69562] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5150), 1, - aux_sym_preproc_include_token2, - [69563] = 2, + sym_identifier, + [69569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5152), 1, - aux_sym_preproc_if_token2, - [69570] = 2, + sym_identifier, + [69576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5154), 1, - anon_sym_SEMI, - [69577] = 2, + sym_identifier, + [69583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5156), 1, - anon_sym_SEMI, - [69584] = 2, + sym_identifier, + [69590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5158), 1, - anon_sym_COLON, - [69591] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69597] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5160), 1, - sym_primitive_type, - [69598] = 2, + aux_sym_preproc_include_token2, + [69604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5162), 1, - sym_identifier, - [69605] = 2, + aux_sym_preproc_if_token2, + [69611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5164), 1, - anon_sym_RPAREN, - [69612] = 2, + anon_sym_LPAREN2, + [69618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5166), 1, aux_sym_preproc_if_token2, - [69619] = 2, + [69625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_RBRACE, + [69632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5168), 1, - aux_sym_preproc_if_token2, - [69626] = 2, + anon_sym_LPAREN2, + [69639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5170), 1, aux_sym_preproc_if_token2, - [69633] = 2, + [69646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5172), 1, - aux_sym_preproc_if_token2, - [69640] = 2, + anon_sym_RPAREN, + [69653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5174), 1, - anon_sym_COMMA, - [69647] = 2, + anon_sym_SEMI, + [69660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5176), 1, anon_sym_RPAREN, - [69654] = 2, - ACTIONS(3579), 1, + [69667] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5178), 1, - aux_sym_preproc_include_token2, - [69661] = 2, + anon_sym_SEMI, + [69674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5180), 1, - anon_sym_RPAREN, - [69668] = 2, + aux_sym_preproc_if_token2, + [69681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5182), 1, - aux_sym_preproc_if_token2, - [69675] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3659), 1, - aux_sym_preproc_include_token2, - [69682] = 2, + anon_sym_SEMI, + [69688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5184), 1, - anon_sym_SEMI, - [69689] = 2, + anon_sym_while, + [69695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5186), 1, - anon_sym_RPAREN, - [69696] = 2, + aux_sym_preproc_if_token2, + [69702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5188), 1, - aux_sym_preproc_if_token2, - [69703] = 2, + anon_sym_RBRACE, + [69709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5190), 1, - aux_sym_preproc_if_token2, - [69710] = 2, + sym_identifier, + [69716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5192), 1, - anon_sym_STAR, - [69717] = 2, + aux_sym_preproc_if_token2, + [69723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_COMMA, + [69730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3420), 1, + anon_sym_SEMI, + [69737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5194), 1, - anon_sym_RPAREN, - [69724] = 2, - ACTIONS(3579), 1, + anon_sym_RBRACE, + [69744] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5196), 1, - aux_sym_preproc_include_token2, - [69731] = 2, + anon_sym_SEMI, + [69751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5198), 1, - anon_sym_RPAREN, - [69738] = 2, + anon_sym_SEMI, + [69758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5200), 1, + sym_identifier, + [69765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, anon_sym_SEMI, - [69745] = 2, + [69772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5202), 1, - anon_sym_COMMA, - [69752] = 2, + sym_identifier, + [69779] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4675), 1, + aux_sym_preproc_include_token2, + [69786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5204), 1, - anon_sym_RPAREN, - [69759] = 2, + aux_sym_preproc_if_token2, + [69793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5206), 1, - anon_sym_COLON, - [69766] = 2, + aux_sym_preproc_if_token2, + [69800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_COMMA, + [69807] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5208), 1, - anon_sym_RPAREN, - [69773] = 2, + aux_sym_preproc_if_token2, + [69814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_SEMI, - [69780] = 2, + ACTIONS(3410), 1, + anon_sym_RPAREN, + [69821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5210), 1, + anon_sym_COMMA, + [69828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym_RPAREN, + [69835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3434), 1, anon_sym_RPAREN, - [69787] = 2, + [69842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5212), 1, - aux_sym_preproc_if_token2, - [69794] = 2, + anon_sym_RBRACK, + [69849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5214), 1, - anon_sym_LPAREN2, - [69801] = 2, + sym_identifier, + [69856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5216), 1, - anon_sym_SEMI, - [69808] = 2, + sym_identifier, + [69863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5218), 1, - aux_sym_preproc_if_token2, - [69815] = 2, + anon_sym_LPAREN2, + [69870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5220), 1, sym_primitive_type, - [69822] = 2, - ACTIONS(3), 1, + [69877] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5222), 1, - anon_sym_while, - [69829] = 2, + aux_sym_preproc_include_token2, + [69884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - anon_sym_RBRACE, - [69836] = 2, + ACTIONS(3396), 1, + anon_sym_RPAREN, + [69891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5224), 1, - aux_sym_preproc_if_token2, - [69843] = 2, + anon_sym_RPAREN, + [69898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_SEMI, + [69905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5226), 1, aux_sym_preproc_if_token2, - [69850] = 2, + [69912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5228), 1, - sym_identifier, - [69857] = 2, - ACTIONS(3579), 1, + anon_sym_RPAREN, + [69919] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5230), 1, - aux_sym_preproc_include_token2, - [69864] = 2, + anon_sym_SEMI, + [69926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5232), 1, anon_sym_RPAREN, - [69871] = 2, + [69933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5234), 1, - anon_sym_SEMI, - [69878] = 2, + anon_sym_RPAREN, + [69940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5236), 1, - anon_sym_while, - [69885] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [69947] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5238), 1, - anon_sym_SEMI, - [69892] = 2, + aux_sym_preproc_include_token2, + [69954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, + ACTIONS(3406), 1, anon_sym_RPAREN, - [69899] = 2, + [69961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, + ACTIONS(5240), 1, sym_identifier, - [69906] = 2, + [69968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5242), 1, + anon_sym_RBRACE, + [69975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5244), 1, - anon_sym_RPAREN, - [69913] = 2, + anon_sym_LPAREN2, + [69982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5246), 1, - anon_sym_STAR, - [69920] = 2, + anon_sym_SEMI, + [69989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, - anon_sym_RPAREN, - [69927] = 2, + anon_sym_RBRACE, + [69996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, aux_sym_preproc_if_token2, - [69934] = 2, + [70003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5252), 1, anon_sym_while, - [69941] = 2, - ACTIONS(3), 1, + [70010] = 2, + ACTIONS(3589), 1, sym_comment, ACTIONS(5254), 1, - sym_identifier, - [69948] = 2, + aux_sym_preproc_include_token2, + [70017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5256), 1, - sym_identifier, - [69955] = 2, + aux_sym_preproc_if_token2, + [70024] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5258), 1, aux_sym_preproc_if_token2, - [69962] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(5260), 1, + [70031] = 2, + ACTIONS(2408), 1, aux_sym_preproc_include_token2, - [69969] = 2, + ACTIONS(3589), 1, + sym_comment, + [70038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 1, + ACTIONS(5260), 1, anon_sym_RBRACE, - [69976] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(3647), 1, - aux_sym_preproc_include_token2, - [69983] = 2, + [70045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5262), 1, - anon_sym_LPAREN2, - [69990] = 2, + aux_sym_preproc_if_token2, + [70052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5264), 1, - sym_identifier, - [69997] = 2, + aux_sym_preproc_if_token2, + [70059] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5266), 1, - aux_sym_preproc_if_token2, - [70004] = 2, + anon_sym_while, + [70066] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(4647), 1, + aux_sym_preproc_include_token2, + [70073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3412), 1, + anon_sym_SEMI, + [70080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_RPAREN, + [70087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3418), 1, + anon_sym_SEMI, + [70094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5268), 1, anon_sym_RPAREN, - [70011] = 2, + [70101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5270), 1, - anon_sym_STAR, - [70018] = 2, + anon_sym_RBRACK, + [70108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5272), 1, anon_sym_SEMI, - [70025] = 2, - ACTIONS(3579), 1, + [70115] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5274), 1, - aux_sym_preproc_include_token2, - [70032] = 2, + anon_sym_while, + [70122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5276), 1, - aux_sym_preproc_if_token2, - [70039] = 2, + anon_sym_RPAREN, + [70129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5278), 1, anon_sym_SEMI, - [70046] = 2, - ACTIONS(3), 1, + [70136] = 2, + ACTIONS(3589), 1, sym_comment, - ACTIONS(5280), 1, - sym_identifier, - [70053] = 2, + ACTIONS(4633), 1, + aux_sym_preproc_include_token2, + [70143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - [70060] = 2, + [70150] = 2, + ACTIONS(2412), 1, + aux_sym_preproc_include_token2, + ACTIONS(3589), 1, + sym_comment, + [70157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, - anon_sym_SEMI, - [70067] = 2, + ACTIONS(5282), 1, + anon_sym_RBRACE, + [70164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5284), 1, - anon_sym_while, - [70074] = 2, + anon_sym_LPAREN2, + [70171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5286), 1, - anon_sym_RPAREN, - [70081] = 2, + aux_sym_preproc_if_token2, + [70178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5288), 1, - anon_sym_SEMI, - [70088] = 2, + aux_sym_preproc_if_token2, + [70185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5290), 1, - anon_sym_SEMI, - [70095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3414), 1, - anon_sym_SEMI, - [70102] = 2, + anon_sym_RPAREN, + [70192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5292), 1, - anon_sym_SEMI, - [70109] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 1, - anon_sym_SEMI, - [70116] = 2, + aux_sym_preproc_if_token2, + [70199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5294), 1, - sym_identifier, - [70123] = 2, + aux_sym_preproc_if_token2, + [70206] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5296), 1, aux_sym_preproc_if_token2, - [70130] = 2, + [70213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5298), 1, aux_sym_preproc_if_token2, - [70137] = 2, + [70220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5300), 1, - anon_sym_RPAREN, - [70144] = 2, + anon_sym_SEMI, + [70227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 1, - anon_sym_RPAREN, - [70151] = 2, - ACTIONS(3579), 1, - sym_comment, ACTIONS(5302), 1, - aux_sym_preproc_include_token2, - [70158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 1, - anon_sym_SEMI, - [70165] = 2, + anon_sym_COLON, + [70234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5304), 1, aux_sym_preproc_if_token2, - [70172] = 2, + [70241] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5306), 1, - anon_sym_SEMI, - [70179] = 2, - ACTIONS(3579), 1, - sym_comment, - ACTIONS(4614), 1, - aux_sym_preproc_include_token2, - [70186] = 2, + aux_sym_preproc_if_token2, + [70248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5308), 1, ts_builtin_sym_end, - [70193] = 2, + [70255] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, anon_sym_RPAREN, - [70200] = 2, + [70262] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5312), 1, - anon_sym_RPAREN, - [70207] = 2, + aux_sym_preproc_if_token2, + [70269] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, - anon_sym_LPAREN2, - [70214] = 2, + anon_sym_RPAREN, + [70276] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5316), 1, anon_sym_LPAREN2, - [70221] = 2, + [70283] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5318), 1, anon_sym_LPAREN2, - [70228] = 2, + [70290] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5320), 1, - sym_identifier, - [70235] = 2, + anon_sym_LPAREN2, + [70297] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5322), 1, - anon_sym_SEMI, - [70242] = 2, + sym_identifier, + [70304] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5324), 1, - anon_sym_RPAREN, - [70249] = 2, + anon_sym_SEMI, + [70311] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5326), 1, anon_sym_SEMI, - [70256] = 2, + [70318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5328), 1, anon_sym_LPAREN2, - [70263] = 2, + [70325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_RPAREN, - [70270] = 2, + ACTIONS(5330), 1, + aux_sym_preproc_if_token2, + [70332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 1, + ACTIONS(5332), 1, anon_sym_COLON, - [70277] = 2, - ACTIONS(3579), 1, + [70339] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(5334), 1, + anon_sym_SEMI, + [70346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + aux_sym_preproc_if_token2, + [70353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 1, + sym_identifier, + [70360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + aux_sym_preproc_if_token2, + [70367] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(5342), 1, aux_sym_preproc_include_token2, - [70284] = 2, + [70374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 1, + ACTIONS(5344), 1, + aux_sym_preproc_if_token2, + [70381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 1, anon_sym_LPAREN2, - [70291] = 2, - ACTIONS(3579), 1, + [70388] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(5348), 1, + sym_identifier, + [70395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + aux_sym_preproc_if_token2, + [70402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5352), 1, + anon_sym_LPAREN2, + [70409] = 2, + ACTIONS(3589), 1, + sym_comment, + ACTIONS(5354), 1, aux_sym_preproc_include_token2, - [70298] = 2, + [70416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5356), 1, + anon_sym_LPAREN2, + [70423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 1, anon_sym_RPAREN, - [70305] = 2, + [70430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_LPAREN2, - [70312] = 2, + ACTIONS(5360), 1, + anon_sym_RPAREN, + [70437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, + ACTIONS(5362), 1, + anon_sym_COLON, + [70444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + aux_sym_preproc_if_token2, + [70451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 1, + aux_sym_preproc_if_token2, + [70458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + aux_sym_preproc_if_token2, + [70465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 1, anon_sym_LPAREN2, - [70319] = 2, + [70472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, + ACTIONS(5372), 1, anon_sym_SEMI, - [70326] = 2, + [70479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, - anon_sym_LPAREN2, - [70333] = 2, + ACTIONS(3438), 1, + anon_sym_SEMI, + [70486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, + ACTIONS(5374), 1, anon_sym_LPAREN2, - [70340] = 2, + [70493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(5376), 1, + anon_sym_RPAREN, + [70500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + sym_identifier, + [70507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, anon_sym_SEMI, - [70347] = 2, + [70514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5350), 1, + ACTIONS(5382), 1, + anon_sym_LPAREN2, + [70521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5384), 1, + anon_sym_RPAREN, + [70528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 1, sym_identifier, - [70354] = 2, + [70535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, + ACTIONS(5388), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(555)] = 0, - [SMALL_STATE(556)] = 114, - [SMALL_STATE(557)] = 228, - [SMALL_STATE(558)] = 338, - [SMALL_STATE(559)] = 449, - [SMALL_STATE(560)] = 557, - [SMALL_STATE(561)] = 663, - [SMALL_STATE(562)] = 771, - [SMALL_STATE(563)] = 879, - [SMALL_STATE(564)] = 987, - [SMALL_STATE(565)] = 1093, - [SMALL_STATE(566)] = 1201, - [SMALL_STATE(567)] = 1309, - [SMALL_STATE(568)] = 1417, - [SMALL_STATE(569)] = 1525, - [SMALL_STATE(570)] = 1633, - [SMALL_STATE(571)] = 1741, - [SMALL_STATE(572)] = 1849, - [SMALL_STATE(573)] = 1957, - [SMALL_STATE(574)] = 2065, - [SMALL_STATE(575)] = 2173, - [SMALL_STATE(576)] = 2281, - [SMALL_STATE(577)] = 2389, - [SMALL_STATE(578)] = 2497, - [SMALL_STATE(579)] = 2605, - [SMALL_STATE(580)] = 2713, - [SMALL_STATE(581)] = 2821, - [SMALL_STATE(582)] = 2929, - [SMALL_STATE(583)] = 3035, - [SMALL_STATE(584)] = 3143, - [SMALL_STATE(585)] = 3251, - [SMALL_STATE(586)] = 3357, - [SMALL_STATE(587)] = 3465, - [SMALL_STATE(588)] = 3573, - [SMALL_STATE(589)] = 3681, - [SMALL_STATE(590)] = 3789, - [SMALL_STATE(591)] = 3892, - [SMALL_STATE(592)] = 3995, - [SMALL_STATE(593)] = 4100, - [SMALL_STATE(594)] = 4205, - [SMALL_STATE(595)] = 4318, - [SMALL_STATE(596)] = 4421, - [SMALL_STATE(597)] = 4526, - [SMALL_STATE(598)] = 4629, - [SMALL_STATE(599)] = 4734, - [SMALL_STATE(600)] = 4839, - [SMALL_STATE(601)] = 4944, - [SMALL_STATE(602)] = 5047, - [SMALL_STATE(603)] = 5152, - [SMALL_STATE(604)] = 5255, - [SMALL_STATE(605)] = 5360, - [SMALL_STATE(606)] = 5465, - [SMALL_STATE(607)] = 5568, - [SMALL_STATE(608)] = 5673, - [SMALL_STATE(609)] = 5776, - [SMALL_STATE(610)] = 5879, - [SMALL_STATE(611)] = 5982, - [SMALL_STATE(612)] = 6087, - [SMALL_STATE(613)] = 6187, - [SMALL_STATE(614)] = 6289, - [SMALL_STATE(615)] = 6391, - [SMALL_STATE(616)] = 6493, - [SMALL_STATE(617)] = 6593, - [SMALL_STATE(618)] = 6695, - [SMALL_STATE(619)] = 6795, - [SMALL_STATE(620)] = 6897, - [SMALL_STATE(621)] = 6997, - [SMALL_STATE(622)] = 7099, - [SMALL_STATE(623)] = 7199, - [SMALL_STATE(624)] = 7301, - [SMALL_STATE(625)] = 7401, - [SMALL_STATE(626)] = 7501, - [SMALL_STATE(627)] = 7601, - [SMALL_STATE(628)] = 7701, - [SMALL_STATE(629)] = 7803, - [SMALL_STATE(630)] = 7903, - [SMALL_STATE(631)] = 8003, - [SMALL_STATE(632)] = 8103, - [SMALL_STATE(633)] = 8205, - [SMALL_STATE(634)] = 8307, - [SMALL_STATE(635)] = 8407, - [SMALL_STATE(636)] = 8509, - [SMALL_STATE(637)] = 8611, - [SMALL_STATE(638)] = 8713, - [SMALL_STATE(639)] = 8813, - [SMALL_STATE(640)] = 8915, - [SMALL_STATE(641)] = 9015, - [SMALL_STATE(642)] = 9117, - [SMALL_STATE(643)] = 9219, - [SMALL_STATE(644)] = 9319, - [SMALL_STATE(645)] = 9421, - [SMALL_STATE(646)] = 9521, - [SMALL_STATE(647)] = 9621, - [SMALL_STATE(648)] = 9721, - [SMALL_STATE(649)] = 9821, - [SMALL_STATE(650)] = 9923, - [SMALL_STATE(651)] = 10025, - [SMALL_STATE(652)] = 10127, - [SMALL_STATE(653)] = 10229, - [SMALL_STATE(654)] = 10331, - [SMALL_STATE(655)] = 10433, - [SMALL_STATE(656)] = 10535, - [SMALL_STATE(657)] = 10635, - [SMALL_STATE(658)] = 10737, - [SMALL_STATE(659)] = 10837, - [SMALL_STATE(660)] = 10937, - [SMALL_STATE(661)] = 11039, - [SMALL_STATE(662)] = 11141, - [SMALL_STATE(663)] = 11241, - [SMALL_STATE(664)] = 11343, - [SMALL_STATE(665)] = 11445, - [SMALL_STATE(666)] = 11545, - [SMALL_STATE(667)] = 11647, - [SMALL_STATE(668)] = 11749, - [SMALL_STATE(669)] = 11851, - [SMALL_STATE(670)] = 11953, - [SMALL_STATE(671)] = 12053, - [SMALL_STATE(672)] = 12153, - [SMALL_STATE(673)] = 12241, - [SMALL_STATE(674)] = 12343, - [SMALL_STATE(675)] = 12443, - [SMALL_STATE(676)] = 12545, - [SMALL_STATE(677)] = 12645, - [SMALL_STATE(678)] = 12747, - [SMALL_STATE(679)] = 12847, - [SMALL_STATE(680)] = 12947, - [SMALL_STATE(681)] = 13049, - [SMALL_STATE(682)] = 13149, - [SMALL_STATE(683)] = 13249, - [SMALL_STATE(684)] = 13349, - [SMALL_STATE(685)] = 13449, - [SMALL_STATE(686)] = 13549, - [SMALL_STATE(687)] = 13649, - [SMALL_STATE(688)] = 13749, - [SMALL_STATE(689)] = 13849, - [SMALL_STATE(690)] = 13949, - [SMALL_STATE(691)] = 14049, - [SMALL_STATE(692)] = 14149, - [SMALL_STATE(693)] = 14251, - [SMALL_STATE(694)] = 14353, - [SMALL_STATE(695)] = 14453, - [SMALL_STATE(696)] = 14553, - [SMALL_STATE(697)] = 14653, - [SMALL_STATE(698)] = 14753, - [SMALL_STATE(699)] = 14853, - [SMALL_STATE(700)] = 14953, - [SMALL_STATE(701)] = 15055, - [SMALL_STATE(702)] = 15155, - [SMALL_STATE(703)] = 15257, - [SMALL_STATE(704)] = 15357, - [SMALL_STATE(705)] = 15457, - [SMALL_STATE(706)] = 15557, - [SMALL_STATE(707)] = 15659, - [SMALL_STATE(708)] = 15759, - [SMALL_STATE(709)] = 15861, - [SMALL_STATE(710)] = 15963, - [SMALL_STATE(711)] = 16065, - [SMALL_STATE(712)] = 16165, - [SMALL_STATE(713)] = 16267, - [SMALL_STATE(714)] = 16369, - [SMALL_STATE(715)] = 16471, - [SMALL_STATE(716)] = 16573, - [SMALL_STATE(717)] = 16675, - [SMALL_STATE(718)] = 16777, - [SMALL_STATE(719)] = 16879, - [SMALL_STATE(720)] = 16979, - [SMALL_STATE(721)] = 17079, - [SMALL_STATE(722)] = 17181, - [SMALL_STATE(723)] = 17283, - [SMALL_STATE(724)] = 17383, - [SMALL_STATE(725)] = 17483, - [SMALL_STATE(726)] = 17585, - [SMALL_STATE(727)] = 17687, - [SMALL_STATE(728)] = 17789, - [SMALL_STATE(729)] = 17889, - [SMALL_STATE(730)] = 17989, - [SMALL_STATE(731)] = 18091, - [SMALL_STATE(732)] = 18191, - [SMALL_STATE(733)] = 18293, - [SMALL_STATE(734)] = 18393, - [SMALL_STATE(735)] = 18495, - [SMALL_STATE(736)] = 18597, - [SMALL_STATE(737)] = 18699, - [SMALL_STATE(738)] = 18801, - [SMALL_STATE(739)] = 18903, - [SMALL_STATE(740)] = 19005, - [SMALL_STATE(741)] = 19107, - [SMALL_STATE(742)] = 19209, - [SMALL_STATE(743)] = 19311, - [SMALL_STATE(744)] = 19413, - [SMALL_STATE(745)] = 19513, - [SMALL_STATE(746)] = 19615, - [SMALL_STATE(747)] = 19717, - [SMALL_STATE(748)] = 19819, - [SMALL_STATE(749)] = 19921, - [SMALL_STATE(750)] = 20023, - [SMALL_STATE(751)] = 20125, - [SMALL_STATE(752)] = 20227, - [SMALL_STATE(753)] = 20329, - [SMALL_STATE(754)] = 20429, - [SMALL_STATE(755)] = 20531, - [SMALL_STATE(756)] = 20633, - [SMALL_STATE(757)] = 20735, - [SMALL_STATE(758)] = 20837, - [SMALL_STATE(759)] = 20939, - [SMALL_STATE(760)] = 21041, - [SMALL_STATE(761)] = 21143, - [SMALL_STATE(762)] = 21245, - [SMALL_STATE(763)] = 21347, - [SMALL_STATE(764)] = 21449, - [SMALL_STATE(765)] = 21551, - [SMALL_STATE(766)] = 21652, - [SMALL_STATE(767)] = 21723, - [SMALL_STATE(768)] = 21824, - [SMALL_STATE(769)] = 21895, - [SMALL_STATE(770)] = 21996, - [SMALL_STATE(771)] = 22097, - [SMALL_STATE(772)] = 22168, - [SMALL_STATE(773)] = 22269, - [SMALL_STATE(774)] = 22337, - [SMALL_STATE(775)] = 22405, - [SMALL_STATE(776)] = 22468, - [SMALL_STATE(777)] = 22531, - [SMALL_STATE(778)] = 22593, - [SMALL_STATE(779)] = 22655, - [SMALL_STATE(780)] = 22717, - [SMALL_STATE(781)] = 22779, - [SMALL_STATE(782)] = 22841, - [SMALL_STATE(783)] = 22903, - [SMALL_STATE(784)] = 22965, - [SMALL_STATE(785)] = 23027, - [SMALL_STATE(786)] = 23089, - [SMALL_STATE(787)] = 23151, - [SMALL_STATE(788)] = 23210, - [SMALL_STATE(789)] = 23269, - [SMALL_STATE(790)] = 23328, - [SMALL_STATE(791)] = 23387, - [SMALL_STATE(792)] = 23479, - [SMALL_STATE(793)] = 23537, - [SMALL_STATE(794)] = 23595, - [SMALL_STATE(795)] = 23653, - [SMALL_STATE(796)] = 23745, - [SMALL_STATE(797)] = 23837, - [SMALL_STATE(798)] = 23895, - [SMALL_STATE(799)] = 23987, - [SMALL_STATE(800)] = 24079, - [SMALL_STATE(801)] = 24171, - [SMALL_STATE(802)] = 24229, - [SMALL_STATE(803)] = 24287, - [SMALL_STATE(804)] = 24379, - [SMALL_STATE(805)] = 24471, - [SMALL_STATE(806)] = 24563, - [SMALL_STATE(807)] = 24655, - [SMALL_STATE(808)] = 24713, - [SMALL_STATE(809)] = 24805, - [SMALL_STATE(810)] = 24897, - [SMALL_STATE(811)] = 24991, - [SMALL_STATE(812)] = 25083, - [SMALL_STATE(813)] = 25141, - [SMALL_STATE(814)] = 25233, - [SMALL_STATE(815)] = 25291, - [SMALL_STATE(816)] = 25383, - [SMALL_STATE(817)] = 25475, - [SMALL_STATE(818)] = 25533, - [SMALL_STATE(819)] = 25625, - [SMALL_STATE(820)] = 25683, - [SMALL_STATE(821)] = 25741, - [SMALL_STATE(822)] = 25799, - [SMALL_STATE(823)] = 25891, - [SMALL_STATE(824)] = 25983, - [SMALL_STATE(825)] = 26041, - [SMALL_STATE(826)] = 26133, - [SMALL_STATE(827)] = 26225, - [SMALL_STATE(828)] = 26283, - [SMALL_STATE(829)] = 26341, - [SMALL_STATE(830)] = 26398, - [SMALL_STATE(831)] = 26487, - [SMALL_STATE(832)] = 26552, - [SMALL_STATE(833)] = 26619, - [SMALL_STATE(834)] = 26710, - [SMALL_STATE(835)] = 26767, - [SMALL_STATE(836)] = 26856, - [SMALL_STATE(837)] = 26923, - [SMALL_STATE(838)] = 26990, - [SMALL_STATE(839)] = 27057, - [SMALL_STATE(840)] = 27122, - [SMALL_STATE(841)] = 27179, - [SMALL_STATE(842)] = 27236, - [SMALL_STATE(843)] = 27303, - [SMALL_STATE(844)] = 27365, - [SMALL_STATE(845)] = 27427, - [SMALL_STATE(846)] = 27489, - [SMALL_STATE(847)] = 27553, - [SMALL_STATE(848)] = 27612, - [SMALL_STATE(849)] = 27671, - [SMALL_STATE(850)] = 27730, - [SMALL_STATE(851)] = 27793, - [SMALL_STATE(852)] = 27875, - [SMALL_STATE(853)] = 27957, - [SMALL_STATE(854)] = 28039, - [SMALL_STATE(855)] = 28093, - [SMALL_STATE(856)] = 28147, - [SMALL_STATE(857)] = 28229, - [SMALL_STATE(858)] = 28311, - [SMALL_STATE(859)] = 28393, - [SMALL_STATE(860)] = 28475, - [SMALL_STATE(861)] = 28557, - [SMALL_STATE(862)] = 28639, - [SMALL_STATE(863)] = 28721, - [SMALL_STATE(864)] = 28800, - [SMALL_STATE(865)] = 28863, - [SMALL_STATE(866)] = 28926, - [SMALL_STATE(867)] = 28979, - [SMALL_STATE(868)] = 29042, - [SMALL_STATE(869)] = 29107, - [SMALL_STATE(870)] = 29170, - [SMALL_STATE(871)] = 29233, - [SMALL_STATE(872)] = 29296, - [SMALL_STATE(873)] = 29359, - [SMALL_STATE(874)] = 29441, - [SMALL_STATE(875)] = 29527, - [SMALL_STATE(876)] = 29613, - [SMALL_STATE(877)] = 29681, - [SMALL_STATE(878)] = 29741, - [SMALL_STATE(879)] = 29819, - [SMALL_STATE(880)] = 29899, - [SMALL_STATE(881)] = 29971, - [SMALL_STATE(882)] = 30035, - [SMALL_STATE(883)] = 30101, - [SMALL_STATE(884)] = 30175, - [SMALL_STATE(885)] = 30261, - [SMALL_STATE(886)] = 30337, - [SMALL_STATE(887)] = 30388, - [SMALL_STATE(888)] = 30439, - [SMALL_STATE(889)] = 30524, - [SMALL_STATE(890)] = 30589, - [SMALL_STATE(891)] = 30656, - [SMALL_STATE(892)] = 30727, - [SMALL_STATE(893)] = 30800, - [SMALL_STATE(894)] = 30875, - [SMALL_STATE(895)] = 30952, - [SMALL_STATE(896)] = 31031, - [SMALL_STATE(897)] = 31112, - [SMALL_STATE(898)] = 31163, - [SMALL_STATE(899)] = 31248, - [SMALL_STATE(900)] = 31303, - [SMALL_STATE(901)] = 31354, - [SMALL_STATE(902)] = 31439, - [SMALL_STATE(903)] = 31502, - [SMALL_STATE(904)] = 31553, - [SMALL_STATE(905)] = 31619, - [SMALL_STATE(906)] = 31689, - [SMALL_STATE(907)] = 31773, - [SMALL_STATE(908)] = 31835, - [SMALL_STATE(909)] = 31919, - [SMALL_STATE(910)] = 31999, - [SMALL_STATE(911)] = 32063, - [SMALL_STATE(912)] = 32137, - [SMALL_STATE(913)] = 32221, - [SMALL_STATE(914)] = 32293, - [SMALL_STATE(915)] = 32353, - [SMALL_STATE(916)] = 32413, - [SMALL_STATE(917)] = 32473, - [SMALL_STATE(918)] = 32533, - [SMALL_STATE(919)] = 32611, - [SMALL_STATE(920)] = 32665, - [SMALL_STATE(921)] = 32723, - [SMALL_STATE(922)] = 32783, - [SMALL_STATE(923)] = 32859, - [SMALL_STATE(924)] = 32908, - [SMALL_STATE(925)] = 32957, - [SMALL_STATE(926)] = 33006, - [SMALL_STATE(927)] = 33055, - [SMALL_STATE(928)] = 33104, - [SMALL_STATE(929)] = 33153, - [SMALL_STATE(930)] = 33202, - [SMALL_STATE(931)] = 33251, - [SMALL_STATE(932)] = 33300, - [SMALL_STATE(933)] = 33349, - [SMALL_STATE(934)] = 33398, - [SMALL_STATE(935)] = 33447, - [SMALL_STATE(936)] = 33496, - [SMALL_STATE(937)] = 33545, - [SMALL_STATE(938)] = 33594, - [SMALL_STATE(939)] = 33643, - [SMALL_STATE(940)] = 33692, - [SMALL_STATE(941)] = 33741, - [SMALL_STATE(942)] = 33790, - [SMALL_STATE(943)] = 33839, - [SMALL_STATE(944)] = 33888, - [SMALL_STATE(945)] = 33937, - [SMALL_STATE(946)] = 33986, - [SMALL_STATE(947)] = 34035, - [SMALL_STATE(948)] = 34084, - [SMALL_STATE(949)] = 34133, - [SMALL_STATE(950)] = 34182, - [SMALL_STATE(951)] = 34235, - [SMALL_STATE(952)] = 34284, - [SMALL_STATE(953)] = 34333, - [SMALL_STATE(954)] = 34382, - [SMALL_STATE(955)] = 34431, - [SMALL_STATE(956)] = 34480, - [SMALL_STATE(957)] = 34529, - [SMALL_STATE(958)] = 34578, - [SMALL_STATE(959)] = 34627, - [SMALL_STATE(960)] = 34676, - [SMALL_STATE(961)] = 34725, - [SMALL_STATE(962)] = 34774, - [SMALL_STATE(963)] = 34823, - [SMALL_STATE(964)] = 34872, - [SMALL_STATE(965)] = 34921, - [SMALL_STATE(966)] = 34970, - [SMALL_STATE(967)] = 35019, - [SMALL_STATE(968)] = 35068, - [SMALL_STATE(969)] = 35117, - [SMALL_STATE(970)] = 35188, - [SMALL_STATE(971)] = 35235, - [SMALL_STATE(972)] = 35294, - [SMALL_STATE(973)] = 35341, - [SMALL_STATE(974)] = 35388, - [SMALL_STATE(975)] = 35435, - [SMALL_STATE(976)] = 35482, - [SMALL_STATE(977)] = 35529, - [SMALL_STATE(978)] = 35582, - [SMALL_STATE(979)] = 35661, - [SMALL_STATE(980)] = 35726, - [SMALL_STATE(981)] = 35773, - [SMALL_STATE(982)] = 35856, - [SMALL_STATE(983)] = 35903, - [SMALL_STATE(984)] = 35956, - [SMALL_STATE(985)] = 36003, - [SMALL_STATE(986)] = 36050, - [SMALL_STATE(987)] = 36097, - [SMALL_STATE(988)] = 36144, - [SMALL_STATE(989)] = 36191, - [SMALL_STATE(990)] = 36238, - [SMALL_STATE(991)] = 36285, - [SMALL_STATE(992)] = 36354, - [SMALL_STATE(993)] = 36437, + [SMALL_STATE(557)] = 0, + [SMALL_STATE(558)] = 114, + [SMALL_STATE(559)] = 228, + [SMALL_STATE(560)] = 338, + [SMALL_STATE(561)] = 449, + [SMALL_STATE(562)] = 557, + [SMALL_STATE(563)] = 665, + [SMALL_STATE(564)] = 771, + [SMALL_STATE(565)] = 879, + [SMALL_STATE(566)] = 987, + [SMALL_STATE(567)] = 1095, + [SMALL_STATE(568)] = 1203, + [SMALL_STATE(569)] = 1311, + [SMALL_STATE(570)] = 1419, + [SMALL_STATE(571)] = 1527, + [SMALL_STATE(572)] = 1635, + [SMALL_STATE(573)] = 1743, + [SMALL_STATE(574)] = 1851, + [SMALL_STATE(575)] = 1959, + [SMALL_STATE(576)] = 2067, + [SMALL_STATE(577)] = 2175, + [SMALL_STATE(578)] = 2283, + [SMALL_STATE(579)] = 2391, + [SMALL_STATE(580)] = 2499, + [SMALL_STATE(581)] = 2607, + [SMALL_STATE(582)] = 2713, + [SMALL_STATE(583)] = 2821, + [SMALL_STATE(584)] = 2929, + [SMALL_STATE(585)] = 3037, + [SMALL_STATE(586)] = 3145, + [SMALL_STATE(587)] = 3251, + [SMALL_STATE(588)] = 3359, + [SMALL_STATE(589)] = 3467, + [SMALL_STATE(590)] = 3575, + [SMALL_STATE(591)] = 3683, + [SMALL_STATE(592)] = 3789, + [SMALL_STATE(593)] = 3894, + [SMALL_STATE(594)] = 3997, + [SMALL_STATE(595)] = 4100, + [SMALL_STATE(596)] = 4203, + [SMALL_STATE(597)] = 4308, + [SMALL_STATE(598)] = 4413, + [SMALL_STATE(599)] = 4516, + [SMALL_STATE(600)] = 4619, + [SMALL_STATE(601)] = 4724, + [SMALL_STATE(602)] = 4827, + [SMALL_STATE(603)] = 4940, + [SMALL_STATE(604)] = 5043, + [SMALL_STATE(605)] = 5148, + [SMALL_STATE(606)] = 5253, + [SMALL_STATE(607)] = 5358, + [SMALL_STATE(608)] = 5461, + [SMALL_STATE(609)] = 5566, + [SMALL_STATE(610)] = 5669, + [SMALL_STATE(611)] = 5774, + [SMALL_STATE(612)] = 5879, + [SMALL_STATE(613)] = 5982, + [SMALL_STATE(614)] = 6087, + [SMALL_STATE(615)] = 6187, + [SMALL_STATE(616)] = 6289, + [SMALL_STATE(617)] = 6391, + [SMALL_STATE(618)] = 6491, + [SMALL_STATE(619)] = 6591, + [SMALL_STATE(620)] = 6691, + [SMALL_STATE(621)] = 6791, + [SMALL_STATE(622)] = 6891, + [SMALL_STATE(623)] = 6991, + [SMALL_STATE(624)] = 7091, + [SMALL_STATE(625)] = 7191, + [SMALL_STATE(626)] = 7291, + [SMALL_STATE(627)] = 7393, + [SMALL_STATE(628)] = 7493, + [SMALL_STATE(629)] = 7593, + [SMALL_STATE(630)] = 7695, + [SMALL_STATE(631)] = 7797, + [SMALL_STATE(632)] = 7899, + [SMALL_STATE(633)] = 7999, + [SMALL_STATE(634)] = 8101, + [SMALL_STATE(635)] = 8201, + [SMALL_STATE(636)] = 8303, + [SMALL_STATE(637)] = 8405, + [SMALL_STATE(638)] = 8507, + [SMALL_STATE(639)] = 8609, + [SMALL_STATE(640)] = 8711, + [SMALL_STATE(641)] = 8813, + [SMALL_STATE(642)] = 8915, + [SMALL_STATE(643)] = 9015, + [SMALL_STATE(644)] = 9103, + [SMALL_STATE(645)] = 9203, + [SMALL_STATE(646)] = 9303, + [SMALL_STATE(647)] = 9403, + [SMALL_STATE(648)] = 9503, + [SMALL_STATE(649)] = 9603, + [SMALL_STATE(650)] = 9703, + [SMALL_STATE(651)] = 9803, + [SMALL_STATE(652)] = 9903, + [SMALL_STATE(653)] = 10003, + [SMALL_STATE(654)] = 10103, + [SMALL_STATE(655)] = 10203, + [SMALL_STATE(656)] = 10303, + [SMALL_STATE(657)] = 10405, + [SMALL_STATE(658)] = 10507, + [SMALL_STATE(659)] = 10609, + [SMALL_STATE(660)] = 10709, + [SMALL_STATE(661)] = 10811, + [SMALL_STATE(662)] = 10911, + [SMALL_STATE(663)] = 11011, + [SMALL_STATE(664)] = 11113, + [SMALL_STATE(665)] = 11213, + [SMALL_STATE(666)] = 11315, + [SMALL_STATE(667)] = 11415, + [SMALL_STATE(668)] = 11515, + [SMALL_STATE(669)] = 11615, + [SMALL_STATE(670)] = 11715, + [SMALL_STATE(671)] = 11815, + [SMALL_STATE(672)] = 11917, + [SMALL_STATE(673)] = 12019, + [SMALL_STATE(674)] = 12119, + [SMALL_STATE(675)] = 12219, + [SMALL_STATE(676)] = 12319, + [SMALL_STATE(677)] = 12421, + [SMALL_STATE(678)] = 12523, + [SMALL_STATE(679)] = 12625, + [SMALL_STATE(680)] = 12727, + [SMALL_STATE(681)] = 12829, + [SMALL_STATE(682)] = 12931, + [SMALL_STATE(683)] = 13033, + [SMALL_STATE(684)] = 13135, + [SMALL_STATE(685)] = 13235, + [SMALL_STATE(686)] = 13337, + [SMALL_STATE(687)] = 13439, + [SMALL_STATE(688)] = 13541, + [SMALL_STATE(689)] = 13641, + [SMALL_STATE(690)] = 13743, + [SMALL_STATE(691)] = 13845, + [SMALL_STATE(692)] = 13947, + [SMALL_STATE(693)] = 14049, + [SMALL_STATE(694)] = 14151, + [SMALL_STATE(695)] = 14253, + [SMALL_STATE(696)] = 14355, + [SMALL_STATE(697)] = 14457, + [SMALL_STATE(698)] = 14559, + [SMALL_STATE(699)] = 14661, + [SMALL_STATE(700)] = 14763, + [SMALL_STATE(701)] = 14865, + [SMALL_STATE(702)] = 14967, + [SMALL_STATE(703)] = 15069, + [SMALL_STATE(704)] = 15171, + [SMALL_STATE(705)] = 15273, + [SMALL_STATE(706)] = 15375, + [SMALL_STATE(707)] = 15477, + [SMALL_STATE(708)] = 15579, + [SMALL_STATE(709)] = 15681, + [SMALL_STATE(710)] = 15783, + [SMALL_STATE(711)] = 15885, + [SMALL_STATE(712)] = 15987, + [SMALL_STATE(713)] = 16087, + [SMALL_STATE(714)] = 16189, + [SMALL_STATE(715)] = 16289, + [SMALL_STATE(716)] = 16391, + [SMALL_STATE(717)] = 16491, + [SMALL_STATE(718)] = 16593, + [SMALL_STATE(719)] = 16695, + [SMALL_STATE(720)] = 16797, + [SMALL_STATE(721)] = 16897, + [SMALL_STATE(722)] = 16999, + [SMALL_STATE(723)] = 17099, + [SMALL_STATE(724)] = 17199, + [SMALL_STATE(725)] = 17301, + [SMALL_STATE(726)] = 17403, + [SMALL_STATE(727)] = 17503, + [SMALL_STATE(728)] = 17603, + [SMALL_STATE(729)] = 17705, + [SMALL_STATE(730)] = 17807, + [SMALL_STATE(731)] = 17909, + [SMALL_STATE(732)] = 18011, + [SMALL_STATE(733)] = 18113, + [SMALL_STATE(734)] = 18215, + [SMALL_STATE(735)] = 18317, + [SMALL_STATE(736)] = 18419, + [SMALL_STATE(737)] = 18521, + [SMALL_STATE(738)] = 18623, + [SMALL_STATE(739)] = 18725, + [SMALL_STATE(740)] = 18827, + [SMALL_STATE(741)] = 18927, + [SMALL_STATE(742)] = 19027, + [SMALL_STATE(743)] = 19129, + [SMALL_STATE(744)] = 19231, + [SMALL_STATE(745)] = 19333, + [SMALL_STATE(746)] = 19433, + [SMALL_STATE(747)] = 19535, + [SMALL_STATE(748)] = 19635, + [SMALL_STATE(749)] = 19737, + [SMALL_STATE(750)] = 19839, + [SMALL_STATE(751)] = 19939, + [SMALL_STATE(752)] = 20039, + [SMALL_STATE(753)] = 20141, + [SMALL_STATE(754)] = 20241, + [SMALL_STATE(755)] = 20343, + [SMALL_STATE(756)] = 20445, + [SMALL_STATE(757)] = 20547, + [SMALL_STATE(758)] = 20649, + [SMALL_STATE(759)] = 20749, + [SMALL_STATE(760)] = 20849, + [SMALL_STATE(761)] = 20951, + [SMALL_STATE(762)] = 21051, + [SMALL_STATE(763)] = 21151, + [SMALL_STATE(764)] = 21251, + [SMALL_STATE(765)] = 21351, + [SMALL_STATE(766)] = 21451, + [SMALL_STATE(767)] = 21551, + [SMALL_STATE(768)] = 21652, + [SMALL_STATE(769)] = 21753, + [SMALL_STATE(770)] = 21824, + [SMALL_STATE(771)] = 21925, + [SMALL_STATE(772)] = 22026, + [SMALL_STATE(773)] = 22127, + [SMALL_STATE(774)] = 22198, + [SMALL_STATE(775)] = 22269, + [SMALL_STATE(776)] = 22337, + [SMALL_STATE(777)] = 22405, + [SMALL_STATE(778)] = 22468, + [SMALL_STATE(779)] = 22531, + [SMALL_STATE(780)] = 22593, + [SMALL_STATE(781)] = 22655, + [SMALL_STATE(782)] = 22717, + [SMALL_STATE(783)] = 22779, + [SMALL_STATE(784)] = 22841, + [SMALL_STATE(785)] = 22903, + [SMALL_STATE(786)] = 22965, + [SMALL_STATE(787)] = 23027, + [SMALL_STATE(788)] = 23089, + [SMALL_STATE(789)] = 23151, + [SMALL_STATE(790)] = 23210, + [SMALL_STATE(791)] = 23269, + [SMALL_STATE(792)] = 23328, + [SMALL_STATE(793)] = 23387, + [SMALL_STATE(794)] = 23479, + [SMALL_STATE(795)] = 23571, + [SMALL_STATE(796)] = 23629, + [SMALL_STATE(797)] = 23687, + [SMALL_STATE(798)] = 23781, + [SMALL_STATE(799)] = 23839, + [SMALL_STATE(800)] = 23897, + [SMALL_STATE(801)] = 23955, + [SMALL_STATE(802)] = 24047, + [SMALL_STATE(803)] = 24105, + [SMALL_STATE(804)] = 24197, + [SMALL_STATE(805)] = 24289, + [SMALL_STATE(806)] = 24381, + [SMALL_STATE(807)] = 24439, + [SMALL_STATE(808)] = 24531, + [SMALL_STATE(809)] = 24589, + [SMALL_STATE(810)] = 24647, + [SMALL_STATE(811)] = 24705, + [SMALL_STATE(812)] = 24763, + [SMALL_STATE(813)] = 24855, + [SMALL_STATE(814)] = 24947, + [SMALL_STATE(815)] = 25039, + [SMALL_STATE(816)] = 25097, + [SMALL_STATE(817)] = 25189, + [SMALL_STATE(818)] = 25281, + [SMALL_STATE(819)] = 25373, + [SMALL_STATE(820)] = 25431, + [SMALL_STATE(821)] = 25489, + [SMALL_STATE(822)] = 25581, + [SMALL_STATE(823)] = 25673, + [SMALL_STATE(824)] = 25765, + [SMALL_STATE(825)] = 25823, + [SMALL_STATE(826)] = 25915, + [SMALL_STATE(827)] = 26007, + [SMALL_STATE(828)] = 26099, + [SMALL_STATE(829)] = 26191, + [SMALL_STATE(830)] = 26283, + [SMALL_STATE(831)] = 26341, + [SMALL_STATE(832)] = 26406, + [SMALL_STATE(833)] = 26473, + [SMALL_STATE(834)] = 26530, + [SMALL_STATE(835)] = 26619, + [SMALL_STATE(836)] = 26686, + [SMALL_STATE(837)] = 26743, + [SMALL_STATE(838)] = 26810, + [SMALL_STATE(839)] = 26875, + [SMALL_STATE(840)] = 26932, + [SMALL_STATE(841)] = 27023, + [SMALL_STATE(842)] = 27080, + [SMALL_STATE(843)] = 27147, + [SMALL_STATE(844)] = 27214, + [SMALL_STATE(845)] = 27303, + [SMALL_STATE(846)] = 27365, + [SMALL_STATE(847)] = 27427, + [SMALL_STATE(848)] = 27489, + [SMALL_STATE(849)] = 27553, + [SMALL_STATE(850)] = 27612, + [SMALL_STATE(851)] = 27671, + [SMALL_STATE(852)] = 27734, + [SMALL_STATE(853)] = 27793, + [SMALL_STATE(854)] = 27875, + [SMALL_STATE(855)] = 27957, + [SMALL_STATE(856)] = 28039, + [SMALL_STATE(857)] = 28121, + [SMALL_STATE(858)] = 28175, + [SMALL_STATE(859)] = 28229, + [SMALL_STATE(860)] = 28311, + [SMALL_STATE(861)] = 28393, + [SMALL_STATE(862)] = 28475, + [SMALL_STATE(863)] = 28557, + [SMALL_STATE(864)] = 28639, + [SMALL_STATE(865)] = 28721, + [SMALL_STATE(866)] = 28784, + [SMALL_STATE(867)] = 28847, + [SMALL_STATE(868)] = 28926, + [SMALL_STATE(869)] = 28989, + [SMALL_STATE(870)] = 29052, + [SMALL_STATE(871)] = 29115, + [SMALL_STATE(872)] = 29178, + [SMALL_STATE(873)] = 29243, + [SMALL_STATE(874)] = 29296, + [SMALL_STATE(875)] = 29359, + [SMALL_STATE(876)] = 29427, + [SMALL_STATE(877)] = 29493, + [SMALL_STATE(878)] = 29565, + [SMALL_STATE(879)] = 29639, + [SMALL_STATE(880)] = 29715, + [SMALL_STATE(881)] = 29775, + [SMALL_STATE(882)] = 29853, + [SMALL_STATE(883)] = 29939, + [SMALL_STATE(884)] = 30021, + [SMALL_STATE(885)] = 30107, + [SMALL_STATE(886)] = 30187, + [SMALL_STATE(887)] = 30251, + [SMALL_STATE(888)] = 30337, + [SMALL_STATE(889)] = 30422, + [SMALL_STATE(890)] = 30485, + [SMALL_STATE(891)] = 30536, + [SMALL_STATE(892)] = 30601, + [SMALL_STATE(893)] = 30686, + [SMALL_STATE(894)] = 30753, + [SMALL_STATE(895)] = 30838, + [SMALL_STATE(896)] = 30909, + [SMALL_STATE(897)] = 30982, + [SMALL_STATE(898)] = 31057, + [SMALL_STATE(899)] = 31134, + [SMALL_STATE(900)] = 31185, + [SMALL_STATE(901)] = 31264, + [SMALL_STATE(902)] = 31319, + [SMALL_STATE(903)] = 31370, + [SMALL_STATE(904)] = 31451, + [SMALL_STATE(905)] = 31502, + [SMALL_STATE(906)] = 31553, + [SMALL_STATE(907)] = 31613, + [SMALL_STATE(908)] = 31675, + [SMALL_STATE(909)] = 31735, + [SMALL_STATE(910)] = 31801, + [SMALL_STATE(911)] = 31855, + [SMALL_STATE(912)] = 31925, + [SMALL_STATE(913)] = 31985, + [SMALL_STATE(914)] = 32049, + [SMALL_STATE(915)] = 32109, + [SMALL_STATE(916)] = 32167, + [SMALL_STATE(917)] = 32239, + [SMALL_STATE(918)] = 32313, + [SMALL_STATE(919)] = 32389, + [SMALL_STATE(920)] = 32473, + [SMALL_STATE(921)] = 32557, + [SMALL_STATE(922)] = 32617, + [SMALL_STATE(923)] = 32695, + [SMALL_STATE(924)] = 32779, + [SMALL_STATE(925)] = 32859, + [SMALL_STATE(926)] = 32908, + [SMALL_STATE(927)] = 32957, + [SMALL_STATE(928)] = 33006, + [SMALL_STATE(929)] = 33055, + [SMALL_STATE(930)] = 33104, + [SMALL_STATE(931)] = 33153, + [SMALL_STATE(932)] = 33202, + [SMALL_STATE(933)] = 33251, + [SMALL_STATE(934)] = 33300, + [SMALL_STATE(935)] = 33349, + [SMALL_STATE(936)] = 33398, + [SMALL_STATE(937)] = 33447, + [SMALL_STATE(938)] = 33496, + [SMALL_STATE(939)] = 33545, + [SMALL_STATE(940)] = 33594, + [SMALL_STATE(941)] = 33643, + [SMALL_STATE(942)] = 33692, + [SMALL_STATE(943)] = 33741, + [SMALL_STATE(944)] = 33790, + [SMALL_STATE(945)] = 33839, + [SMALL_STATE(946)] = 33888, + [SMALL_STATE(947)] = 33937, + [SMALL_STATE(948)] = 33986, + [SMALL_STATE(949)] = 34035, + [SMALL_STATE(950)] = 34084, + [SMALL_STATE(951)] = 34133, + [SMALL_STATE(952)] = 34182, + [SMALL_STATE(953)] = 34235, + [SMALL_STATE(954)] = 34284, + [SMALL_STATE(955)] = 34333, + [SMALL_STATE(956)] = 34382, + [SMALL_STATE(957)] = 34431, + [SMALL_STATE(958)] = 34480, + [SMALL_STATE(959)] = 34529, + [SMALL_STATE(960)] = 34578, + [SMALL_STATE(961)] = 34627, + [SMALL_STATE(962)] = 34676, + [SMALL_STATE(963)] = 34725, + [SMALL_STATE(964)] = 34774, + [SMALL_STATE(965)] = 34823, + [SMALL_STATE(966)] = 34872, + [SMALL_STATE(967)] = 34921, + [SMALL_STATE(968)] = 34970, + [SMALL_STATE(969)] = 35019, + [SMALL_STATE(970)] = 35068, + [SMALL_STATE(971)] = 35117, + [SMALL_STATE(972)] = 35172, + [SMALL_STATE(973)] = 35235, + [SMALL_STATE(974)] = 35318, + [SMALL_STATE(975)] = 35365, + [SMALL_STATE(976)] = 35420, + [SMALL_STATE(977)] = 35499, + [SMALL_STATE(978)] = 35546, + [SMALL_STATE(979)] = 35593, + [SMALL_STATE(980)] = 35640, + [SMALL_STATE(981)] = 35687, + [SMALL_STATE(982)] = 35734, + [SMALL_STATE(983)] = 35781, + [SMALL_STATE(984)] = 35842, + [SMALL_STATE(985)] = 35889, + [SMALL_STATE(986)] = 35948, + [SMALL_STATE(987)] = 36001, + [SMALL_STATE(988)] = 36080, + [SMALL_STATE(989)] = 36135, + [SMALL_STATE(990)] = 36212, + [SMALL_STATE(991)] = 36287, + [SMALL_STATE(992)] = 36360, + [SMALL_STATE(993)] = 36431, [SMALL_STATE(994)] = 36500, - [SMALL_STATE(995)] = 36547, - [SMALL_STATE(996)] = 36594, - [SMALL_STATE(997)] = 36653, - [SMALL_STATE(998)] = 36726, - [SMALL_STATE(999)] = 36781, - [SMALL_STATE(1000)] = 36836, - [SMALL_STATE(1001)] = 36883, - [SMALL_STATE(1002)] = 36930, - [SMALL_STATE(1003)] = 36985, - [SMALL_STATE(1004)] = 37068, - [SMALL_STATE(1005)] = 37127, - [SMALL_STATE(1006)] = 37202, - [SMALL_STATE(1007)] = 37261, - [SMALL_STATE(1008)] = 37338, - [SMALL_STATE(1009)] = 37393, - [SMALL_STATE(1010)] = 37452, - [SMALL_STATE(1011)] = 37507, - [SMALL_STATE(1012)] = 37564, - [SMALL_STATE(1013)] = 37625, - [SMALL_STATE(1014)] = 37672, - [SMALL_STATE(1015)] = 37751, - [SMALL_STATE(1016)] = 37797, - [SMALL_STATE(1017)] = 37843, - [SMALL_STATE(1018)] = 37893, - [SMALL_STATE(1019)] = 37939, - [SMALL_STATE(1020)] = 37985, - [SMALL_STATE(1021)] = 38031, - [SMALL_STATE(1022)] = 38076, - [SMALL_STATE(1023)] = 38121, - [SMALL_STATE(1024)] = 38166, - [SMALL_STATE(1025)] = 38211, - [SMALL_STATE(1026)] = 38256, - [SMALL_STATE(1027)] = 38305, - [SMALL_STATE(1028)] = 38350, - [SMALL_STATE(1029)] = 38395, - [SMALL_STATE(1030)] = 38440, - [SMALL_STATE(1031)] = 38485, - [SMALL_STATE(1032)] = 38530, - [SMALL_STATE(1033)] = 38575, - [SMALL_STATE(1034)] = 38624, - [SMALL_STATE(1035)] = 38673, - [SMALL_STATE(1036)] = 38722, - [SMALL_STATE(1037)] = 38767, - [SMALL_STATE(1038)] = 38812, - [SMALL_STATE(1039)] = 38857, - [SMALL_STATE(1040)] = 38902, - [SMALL_STATE(1041)] = 38947, - [SMALL_STATE(1042)] = 38992, - [SMALL_STATE(1043)] = 39037, - [SMALL_STATE(1044)] = 39086, - [SMALL_STATE(1045)] = 39131, - [SMALL_STATE(1046)] = 39176, - [SMALL_STATE(1047)] = 39221, - [SMALL_STATE(1048)] = 39266, - [SMALL_STATE(1049)] = 39323, - [SMALL_STATE(1050)] = 39368, - [SMALL_STATE(1051)] = 39417, - [SMALL_STATE(1052)] = 39462, - [SMALL_STATE(1053)] = 39511, - [SMALL_STATE(1054)] = 39560, - [SMALL_STATE(1055)] = 39609, - [SMALL_STATE(1056)] = 39654, - [SMALL_STATE(1057)] = 39703, - [SMALL_STATE(1058)] = 39748, - [SMALL_STATE(1059)] = 39793, - [SMALL_STATE(1060)] = 39838, - [SMALL_STATE(1061)] = 39883, - [SMALL_STATE(1062)] = 39928, - [SMALL_STATE(1063)] = 39977, - [SMALL_STATE(1064)] = 40026, - [SMALL_STATE(1065)] = 40075, - [SMALL_STATE(1066)] = 40124, - [SMALL_STATE(1067)] = 40169, - [SMALL_STATE(1068)] = 40214, - [SMALL_STATE(1069)] = 40259, - [SMALL_STATE(1070)] = 40308, - [SMALL_STATE(1071)] = 40353, - [SMALL_STATE(1072)] = 40402, - [SMALL_STATE(1073)] = 40459, - [SMALL_STATE(1074)] = 40504, - [SMALL_STATE(1075)] = 40561, - [SMALL_STATE(1076)] = 40606, - [SMALL_STATE(1077)] = 40663, - [SMALL_STATE(1078)] = 40707, - [SMALL_STATE(1079)] = 40751, - [SMALL_STATE(1080)] = 40795, - [SMALL_STATE(1081)] = 40839, - [SMALL_STATE(1082)] = 40889, - [SMALL_STATE(1083)] = 40933, - [SMALL_STATE(1084)] = 40977, - [SMALL_STATE(1085)] = 41021, - [SMALL_STATE(1086)] = 41069, - [SMALL_STATE(1087)] = 41113, - [SMALL_STATE(1088)] = 41157, - [SMALL_STATE(1089)] = 41201, - [SMALL_STATE(1090)] = 41245, - [SMALL_STATE(1091)] = 41289, - [SMALL_STATE(1092)] = 41333, - [SMALL_STATE(1093)] = 41381, - [SMALL_STATE(1094)] = 41425, - [SMALL_STATE(1095)] = 41469, - [SMALL_STATE(1096)] = 41517, - [SMALL_STATE(1097)] = 41561, - [SMALL_STATE(1098)] = 41605, - [SMALL_STATE(1099)] = 41649, - [SMALL_STATE(1100)] = 41693, - [SMALL_STATE(1101)] = 41737, - [SMALL_STATE(1102)] = 41785, - [SMALL_STATE(1103)] = 41833, - [SMALL_STATE(1104)] = 41883, - [SMALL_STATE(1105)] = 41927, - [SMALL_STATE(1106)] = 41975, - [SMALL_STATE(1107)] = 42019, - [SMALL_STATE(1108)] = 42063, - [SMALL_STATE(1109)] = 42107, - [SMALL_STATE(1110)] = 42159, - [SMALL_STATE(1111)] = 42203, - [SMALL_STATE(1112)] = 42251, - [SMALL_STATE(1113)] = 42295, - [SMALL_STATE(1114)] = 42339, - [SMALL_STATE(1115)] = 42383, - [SMALL_STATE(1116)] = 42452, - [SMALL_STATE(1117)] = 42521, - [SMALL_STATE(1118)] = 42590, - [SMALL_STATE(1119)] = 42659, - [SMALL_STATE(1120)] = 42714, - [SMALL_STATE(1121)] = 42770, - [SMALL_STATE(1122)] = 42822, - [SMALL_STATE(1123)] = 42874, - [SMALL_STATE(1124)] = 42930, - [SMALL_STATE(1125)] = 42980, - [SMALL_STATE(1126)] = 43036, - [SMALL_STATE(1127)] = 43092, - [SMALL_STATE(1128)] = 43148, - [SMALL_STATE(1129)] = 43205, - [SMALL_STATE(1130)] = 43282, - [SMALL_STATE(1131)] = 43353, - [SMALL_STATE(1132)] = 43416, - [SMALL_STATE(1133)] = 43493, - [SMALL_STATE(1134)] = 43566, - [SMALL_STATE(1135)] = 43621, - [SMALL_STATE(1136)] = 43686, - [SMALL_STATE(1137)] = 43753, - [SMALL_STATE(1138)] = 43822, - [SMALL_STATE(1139)] = 43881, - [SMALL_STATE(1140)] = 43958, - [SMALL_STATE(1141)] = 44035, - [SMALL_STATE(1142)] = 44084, - [SMALL_STATE(1143)] = 44126, - [SMALL_STATE(1144)] = 44166, - [SMALL_STATE(1145)] = 44206, - [SMALL_STATE(1146)] = 44246, - [SMALL_STATE(1147)] = 44304, - [SMALL_STATE(1148)] = 44378, - [SMALL_STATE(1149)] = 44440, - [SMALL_STATE(1150)] = 44514, - [SMALL_STATE(1151)] = 44578, - [SMALL_STATE(1152)] = 44652, - [SMALL_STATE(1153)] = 44694, - [SMALL_STATE(1154)] = 44734, - [SMALL_STATE(1155)] = 44800, - [SMALL_STATE(1156)] = 44856, - [SMALL_STATE(1157)] = 44924, - [SMALL_STATE(1158)] = 44992, - [SMALL_STATE(1159)] = 45062, - [SMALL_STATE(1160)] = 45116, - [SMALL_STATE(1161)] = 45158, - [SMALL_STATE(1162)] = 45200, - [SMALL_STATE(1163)] = 45242, - [SMALL_STATE(1164)] = 45305, - [SMALL_STATE(1165)] = 45366, - [SMALL_STATE(1166)] = 45439, - [SMALL_STATE(1167)] = 45482, - [SMALL_STATE(1168)] = 45521, - [SMALL_STATE(1169)] = 45594, - [SMALL_STATE(1170)] = 45657, - [SMALL_STATE(1171)] = 45712, - [SMALL_STATE(1172)] = 45769, - [SMALL_STATE(1173)] = 45842, - [SMALL_STATE(1174)] = 45907, - [SMALL_STATE(1175)] = 45974, - [SMALL_STATE(1176)] = 46017, - [SMALL_STATE(1177)] = 46084, - [SMALL_STATE(1178)] = 46153, - [SMALL_STATE(1179)] = 46206, - [SMALL_STATE(1180)] = 46279, - [SMALL_STATE(1181)] = 46322, - [SMALL_STATE(1182)] = 46382, - [SMALL_STATE(1183)] = 46442, - [SMALL_STATE(1184)] = 46502, - [SMALL_STATE(1185)] = 46562, - [SMALL_STATE(1186)] = 46622, - [SMALL_STATE(1187)] = 46682, - [SMALL_STATE(1188)] = 46742, - [SMALL_STATE(1189)] = 46802, - [SMALL_STATE(1190)] = 46877, - [SMALL_STATE(1191)] = 46952, - [SMALL_STATE(1192)] = 47027, - [SMALL_STATE(1193)] = 47102, - [SMALL_STATE(1194)] = 47173, - [SMALL_STATE(1195)] = 47248, - [SMALL_STATE(1196)] = 47323, - [SMALL_STATE(1197)] = 47398, - [SMALL_STATE(1198)] = 47473, - [SMALL_STATE(1199)] = 47546, - [SMALL_STATE(1200)] = 47618, - [SMALL_STATE(1201)] = 47688, - [SMALL_STATE(1202)] = 47760, - [SMALL_STATE(1203)] = 47834, - [SMALL_STATE(1204)] = 47906, - [SMALL_STATE(1205)] = 47962, - [SMALL_STATE(1206)] = 48034, - [SMALL_STATE(1207)] = 48090, - [SMALL_STATE(1208)] = 48146, - [SMALL_STATE(1209)] = 48202, - [SMALL_STATE(1210)] = 48274, - [SMALL_STATE(1211)] = 48330, - [SMALL_STATE(1212)] = 48386, - [SMALL_STATE(1213)] = 48458, - [SMALL_STATE(1214)] = 48528, - [SMALL_STATE(1215)] = 48600, - [SMALL_STATE(1216)] = 48672, - [SMALL_STATE(1217)] = 48744, - [SMALL_STATE(1218)] = 48800, - [SMALL_STATE(1219)] = 48856, - [SMALL_STATE(1220)] = 48928, - [SMALL_STATE(1221)] = 48984, - [SMALL_STATE(1222)] = 49038, - [SMALL_STATE(1223)] = 49094, - [SMALL_STATE(1224)] = 49164, - [SMALL_STATE(1225)] = 49236, - [SMALL_STATE(1226)] = 49292, - [SMALL_STATE(1227)] = 49352, - [SMALL_STATE(1228)] = 49424, - [SMALL_STATE(1229)] = 49480, - [SMALL_STATE(1230)] = 49536, - [SMALL_STATE(1231)] = 49606, - [SMALL_STATE(1232)] = 49678, - [SMALL_STATE(1233)] = 49740, - [SMALL_STATE(1234)] = 49812, - [SMALL_STATE(1235)] = 49884, - [SMALL_STATE(1236)] = 49956, - [SMALL_STATE(1237)] = 50028, - [SMALL_STATE(1238)] = 50100, - [SMALL_STATE(1239)] = 50156, - [SMALL_STATE(1240)] = 50228, - [SMALL_STATE(1241)] = 50292, - [SMALL_STATE(1242)] = 50348, - [SMALL_STATE(1243)] = 50414, - [SMALL_STATE(1244)] = 50486, - [SMALL_STATE(1245)] = 50558, - [SMALL_STATE(1246)] = 50630, - [SMALL_STATE(1247)] = 50696, - [SMALL_STATE(1248)] = 50768, - [SMALL_STATE(1249)] = 50824, - [SMALL_STATE(1250)] = 50892, - [SMALL_STATE(1251)] = 50964, - [SMALL_STATE(1252)] = 51016, - [SMALL_STATE(1253)] = 51086, - [SMALL_STATE(1254)] = 51158, - [SMALL_STATE(1255)] = 51214, - [SMALL_STATE(1256)] = 51286, - [SMALL_STATE(1257)] = 51342, - [SMALL_STATE(1258)] = 51412, - [SMALL_STATE(1259)] = 51468, - [SMALL_STATE(1260)] = 51538, - [SMALL_STATE(1261)] = 51608, - [SMALL_STATE(1262)] = 51677, - [SMALL_STATE(1263)] = 51746, - [SMALL_STATE(1264)] = 51815, - [SMALL_STATE(1265)] = 51868, - [SMALL_STATE(1266)] = 51937, - [SMALL_STATE(1267)] = 52006, - [SMALL_STATE(1268)] = 52075, - [SMALL_STATE(1269)] = 52144, - [SMALL_STATE(1270)] = 52183, - [SMALL_STATE(1271)] = 52252, - [SMALL_STATE(1272)] = 52321, - [SMALL_STATE(1273)] = 52390, - [SMALL_STATE(1274)] = 52459, - [SMALL_STATE(1275)] = 52528, - [SMALL_STATE(1276)] = 52581, - [SMALL_STATE(1277)] = 52634, - [SMALL_STATE(1278)] = 52703, - [SMALL_STATE(1279)] = 52772, - [SMALL_STATE(1280)] = 52841, - [SMALL_STATE(1281)] = 52910, - [SMALL_STATE(1282)] = 52963, - [SMALL_STATE(1283)] = 53016, - [SMALL_STATE(1284)] = 53085, - [SMALL_STATE(1285)] = 53154, - [SMALL_STATE(1286)] = 53223, - [SMALL_STATE(1287)] = 53292, - [SMALL_STATE(1288)] = 53361, - [SMALL_STATE(1289)] = 53430, - [SMALL_STATE(1290)] = 53483, - [SMALL_STATE(1291)] = 53552, - [SMALL_STATE(1292)] = 53621, - [SMALL_STATE(1293)] = 53690, - [SMALL_STATE(1294)] = 53759, - [SMALL_STATE(1295)] = 53828, - [SMALL_STATE(1296)] = 53897, - [SMALL_STATE(1297)] = 53966, - [SMALL_STATE(1298)] = 54035, - [SMALL_STATE(1299)] = 54104, - [SMALL_STATE(1300)] = 54148, - [SMALL_STATE(1301)] = 54214, - [SMALL_STATE(1302)] = 54256, - [SMALL_STATE(1303)] = 54298, - [SMALL_STATE(1304)] = 54334, - [SMALL_STATE(1305)] = 54370, - [SMALL_STATE(1306)] = 54406, - [SMALL_STATE(1307)] = 54442, - [SMALL_STATE(1308)] = 54489, - [SMALL_STATE(1309)] = 54520, - [SMALL_STATE(1310)] = 54551, - [SMALL_STATE(1311)] = 54598, - [SMALL_STATE(1312)] = 54645, - [SMALL_STATE(1313)] = 54692, - [SMALL_STATE(1314)] = 54739, - [SMALL_STATE(1315)] = 54786, - [SMALL_STATE(1316)] = 54830, - [SMALL_STATE(1317)] = 54874, - [SMALL_STATE(1318)] = 54918, - [SMALL_STATE(1319)] = 54952, - [SMALL_STATE(1320)] = 54996, - [SMALL_STATE(1321)] = 55034, - [SMALL_STATE(1322)] = 55070, - [SMALL_STATE(1323)] = 55114, - [SMALL_STATE(1324)] = 55158, - [SMALL_STATE(1325)] = 55213, - [SMALL_STATE(1326)] = 55256, - [SMALL_STATE(1327)] = 55299, - [SMALL_STATE(1328)] = 55332, - [SMALL_STATE(1329)] = 55387, - [SMALL_STATE(1330)] = 55442, - [SMALL_STATE(1331)] = 55485, - [SMALL_STATE(1332)] = 55525, - [SMALL_STATE(1333)] = 55565, - [SMALL_STATE(1334)] = 55605, - [SMALL_STATE(1335)] = 55653, - [SMALL_STATE(1336)] = 55699, - [SMALL_STATE(1337)] = 55745, - [SMALL_STATE(1338)] = 55789, - [SMALL_STATE(1339)] = 55831, - [SMALL_STATE(1340)] = 55863, - [SMALL_STATE(1341)] = 55903, - [SMALL_STATE(1342)] = 55939, - [SMALL_STATE(1343)] = 55973, - [SMALL_STATE(1344)] = 56001, - [SMALL_STATE(1345)] = 56033, - [SMALL_STATE(1346)] = 56061, - [SMALL_STATE(1347)] = 56101, - [SMALL_STATE(1348)] = 56141, - [SMALL_STATE(1349)] = 56181, - [SMALL_STATE(1350)] = 56221, - [SMALL_STATE(1351)] = 56261, - [SMALL_STATE(1352)] = 56301, - [SMALL_STATE(1353)] = 56341, - [SMALL_STATE(1354)] = 56381, - [SMALL_STATE(1355)] = 56421, - [SMALL_STATE(1356)] = 56471, - [SMALL_STATE(1357)] = 56499, - [SMALL_STATE(1358)] = 56527, - [SMALL_STATE(1359)] = 56567, - [SMALL_STATE(1360)] = 56595, - [SMALL_STATE(1361)] = 56635, - [SMALL_STATE(1362)] = 56667, - [SMALL_STATE(1363)] = 56695, - [SMALL_STATE(1364)] = 56735, - [SMALL_STATE(1365)] = 56775, - [SMALL_STATE(1366)] = 56815, - [SMALL_STATE(1367)] = 56855, - [SMALL_STATE(1368)] = 56895, - [SMALL_STATE(1369)] = 56935, - [SMALL_STATE(1370)] = 56975, - [SMALL_STATE(1371)] = 57015, - [SMALL_STATE(1372)] = 57055, - [SMALL_STATE(1373)] = 57095, - [SMALL_STATE(1374)] = 57135, - [SMALL_STATE(1375)] = 57175, - [SMALL_STATE(1376)] = 57215, - [SMALL_STATE(1377)] = 57255, - [SMALL_STATE(1378)] = 57295, - [SMALL_STATE(1379)] = 57327, - [SMALL_STATE(1380)] = 57367, - [SMALL_STATE(1381)] = 57407, - [SMALL_STATE(1382)] = 57447, - [SMALL_STATE(1383)] = 57487, - [SMALL_STATE(1384)] = 57519, - [SMALL_STATE(1385)] = 57559, - [SMALL_STATE(1386)] = 57599, - [SMALL_STATE(1387)] = 57639, - [SMALL_STATE(1388)] = 57679, - [SMALL_STATE(1389)] = 57719, - [SMALL_STATE(1390)] = 57759, - [SMALL_STATE(1391)] = 57799, - [SMALL_STATE(1392)] = 57827, - [SMALL_STATE(1393)] = 57855, - [SMALL_STATE(1394)] = 57903, - [SMALL_STATE(1395)] = 57943, - [SMALL_STATE(1396)] = 57971, - [SMALL_STATE(1397)] = 57999, - [SMALL_STATE(1398)] = 58030, - [SMALL_STATE(1399)] = 58069, - [SMALL_STATE(1400)] = 58100, - [SMALL_STATE(1401)] = 58131, - [SMALL_STATE(1402)] = 58158, - [SMALL_STATE(1403)] = 58189, - [SMALL_STATE(1404)] = 58234, - [SMALL_STATE(1405)] = 58279, - [SMALL_STATE(1406)] = 58310, - [SMALL_STATE(1407)] = 58343, - [SMALL_STATE(1408)] = 58378, - [SMALL_STATE(1409)] = 58415, - [SMALL_STATE(1410)] = 58460, - [SMALL_STATE(1411)] = 58501, - [SMALL_STATE(1412)] = 58544, - [SMALL_STATE(1413)] = 58589, - [SMALL_STATE(1414)] = 58616, - [SMALL_STATE(1415)] = 58645, - [SMALL_STATE(1416)] = 58694, - [SMALL_STATE(1417)] = 58721, - [SMALL_STATE(1418)] = 58766, - [SMALL_STATE(1419)] = 58811, - [SMALL_STATE(1420)] = 58838, - [SMALL_STATE(1421)] = 58869, - [SMALL_STATE(1422)] = 58896, - [SMALL_STATE(1423)] = 58941, - [SMALL_STATE(1424)] = 58986, - [SMALL_STATE(1425)] = 59031, - [SMALL_STATE(1426)] = 59076, - [SMALL_STATE(1427)] = 59103, - [SMALL_STATE(1428)] = 59148, - [SMALL_STATE(1429)] = 59181, - [SMALL_STATE(1430)] = 59226, - [SMALL_STATE(1431)] = 59275, - [SMALL_STATE(1432)] = 59306, - [SMALL_STATE(1433)] = 59333, - [SMALL_STATE(1434)] = 59360, - [SMALL_STATE(1435)] = 59391, - [SMALL_STATE(1436)] = 59418, - [SMALL_STATE(1437)] = 59463, - [SMALL_STATE(1438)] = 59508, - [SMALL_STATE(1439)] = 59553, - [SMALL_STATE(1440)] = 59598, - [SMALL_STATE(1441)] = 59629, - [SMALL_STATE(1442)] = 59664, - [SMALL_STATE(1443)] = 59709, - [SMALL_STATE(1444)] = 59736, - [SMALL_STATE(1445)] = 59777, - [SMALL_STATE(1446)] = 59818, - [SMALL_STATE(1447)] = 59859, - [SMALL_STATE(1448)] = 59900, - [SMALL_STATE(1449)] = 59941, - [SMALL_STATE(1450)] = 59982, - [SMALL_STATE(1451)] = 60023, - [SMALL_STATE(1452)] = 60064, - [SMALL_STATE(1453)] = 60099, - [SMALL_STATE(1454)] = 60140, - [SMALL_STATE(1455)] = 60181, - [SMALL_STATE(1456)] = 60229, - [SMALL_STATE(1457)] = 60277, - [SMALL_STATE(1458)] = 60325, - [SMALL_STATE(1459)] = 60373, - [SMALL_STATE(1460)] = 60421, - [SMALL_STATE(1461)] = 60459, - [SMALL_STATE(1462)] = 60497, - [SMALL_STATE(1463)] = 60538, - [SMALL_STATE(1464)] = 60583, - [SMALL_STATE(1465)] = 60624, - [SMALL_STATE(1466)] = 60665, - [SMALL_STATE(1467)] = 60710, - [SMALL_STATE(1468)] = 60755, - [SMALL_STATE(1469)] = 60800, - [SMALL_STATE(1470)] = 60841, - [SMALL_STATE(1471)] = 60886, - [SMALL_STATE(1472)] = 60924, - [SMALL_STATE(1473)] = 60962, - [SMALL_STATE(1474)] = 61000, - [SMALL_STATE(1475)] = 61026, - [SMALL_STATE(1476)] = 61064, - [SMALL_STATE(1477)] = 61094, - [SMALL_STATE(1478)] = 61134, - [SMALL_STATE(1479)] = 61172, - [SMALL_STATE(1480)] = 61197, - [SMALL_STATE(1481)] = 61232, - [SMALL_STATE(1482)] = 61267, - [SMALL_STATE(1483)] = 61296, - [SMALL_STATE(1484)] = 61321, - [SMALL_STATE(1485)] = 61350, - [SMALL_STATE(1486)] = 61385, - [SMALL_STATE(1487)] = 61420, - [SMALL_STATE(1488)] = 61455, - [SMALL_STATE(1489)] = 61480, - [SMALL_STATE(1490)] = 61519, - [SMALL_STATE(1491)] = 61554, - [SMALL_STATE(1492)] = 61589, - [SMALL_STATE(1493)] = 61624, - [SMALL_STATE(1494)] = 61659, - [SMALL_STATE(1495)] = 61692, - [SMALL_STATE(1496)] = 61721, - [SMALL_STATE(1497)] = 61756, - [SMALL_STATE(1498)] = 61781, - [SMALL_STATE(1499)] = 61816, - [SMALL_STATE(1500)] = 61845, - [SMALL_STATE(1501)] = 61880, - [SMALL_STATE(1502)] = 61913, - [SMALL_STATE(1503)] = 61949, - [SMALL_STATE(1504)] = 61981, - [SMALL_STATE(1505)] = 62001, - [SMALL_STATE(1506)] = 62025, - [SMALL_STATE(1507)] = 62057, - [SMALL_STATE(1508)] = 62089, - [SMALL_STATE(1509)] = 62123, - [SMALL_STATE(1510)] = 62155, - [SMALL_STATE(1511)] = 62175, - [SMALL_STATE(1512)] = 62195, - [SMALL_STATE(1513)] = 62227, - [SMALL_STATE(1514)] = 62259, - [SMALL_STATE(1515)] = 62290, - [SMALL_STATE(1516)] = 62317, - [SMALL_STATE(1517)] = 62346, - [SMALL_STATE(1518)] = 62375, - [SMALL_STATE(1519)] = 62404, - [SMALL_STATE(1520)] = 62431, - [SMALL_STATE(1521)] = 62462, - [SMALL_STATE(1522)] = 62491, - [SMALL_STATE(1523)] = 62520, - [SMALL_STATE(1524)] = 62547, - [SMALL_STATE(1525)] = 62576, - [SMALL_STATE(1526)] = 62605, - [SMALL_STATE(1527)] = 62632, - [SMALL_STATE(1528)] = 62661, - [SMALL_STATE(1529)] = 62692, - [SMALL_STATE(1530)] = 62721, - [SMALL_STATE(1531)] = 62754, - [SMALL_STATE(1532)] = 62783, - [SMALL_STATE(1533)] = 62816, - [SMALL_STATE(1534)] = 62842, - [SMALL_STATE(1535)] = 62868, - [SMALL_STATE(1536)] = 62886, - [SMALL_STATE(1537)] = 62904, - [SMALL_STATE(1538)] = 62930, - [SMALL_STATE(1539)] = 62952, - [SMALL_STATE(1540)] = 62976, - [SMALL_STATE(1541)] = 62994, - [SMALL_STATE(1542)] = 63012, - [SMALL_STATE(1543)] = 63042, - [SMALL_STATE(1544)] = 63066, - [SMALL_STATE(1545)] = 63092, - [SMALL_STATE(1546)] = 63110, - [SMALL_STATE(1547)] = 63128, - [SMALL_STATE(1548)] = 63157, - [SMALL_STATE(1549)] = 63180, - [SMALL_STATE(1550)] = 63203, - [SMALL_STATE(1551)] = 63226, - [SMALL_STATE(1552)] = 63255, - [SMALL_STATE(1553)] = 63284, - [SMALL_STATE(1554)] = 63305, - [SMALL_STATE(1555)] = 63334, - [SMALL_STATE(1556)] = 63355, - [SMALL_STATE(1557)] = 63376, - [SMALL_STATE(1558)] = 63397, - [SMALL_STATE(1559)] = 63418, - [SMALL_STATE(1560)] = 63447, - [SMALL_STATE(1561)] = 63468, - [SMALL_STATE(1562)] = 63493, - [SMALL_STATE(1563)] = 63516, - [SMALL_STATE(1564)] = 63540, - [SMALL_STATE(1565)] = 63564, - [SMALL_STATE(1566)] = 63580, - [SMALL_STATE(1567)] = 63600, - [SMALL_STATE(1568)] = 63624, - [SMALL_STATE(1569)] = 63650, - [SMALL_STATE(1570)] = 63670, - [SMALL_STATE(1571)] = 63686, - [SMALL_STATE(1572)] = 63702, - [SMALL_STATE(1573)] = 63728, - [SMALL_STATE(1574)] = 63746, - [SMALL_STATE(1575)] = 63766, - [SMALL_STATE(1576)] = 63782, - [SMALL_STATE(1577)] = 63802, - [SMALL_STATE(1578)] = 63828, - [SMALL_STATE(1579)] = 63844, - [SMALL_STATE(1580)] = 63870, - [SMALL_STATE(1581)] = 63886, - [SMALL_STATE(1582)] = 63912, - [SMALL_STATE(1583)] = 63932, - [SMALL_STATE(1584)] = 63958, - [SMALL_STATE(1585)] = 63976, - [SMALL_STATE(1586)] = 64002, - [SMALL_STATE(1587)] = 64022, - [SMALL_STATE(1588)] = 64038, - [SMALL_STATE(1589)] = 64054, - [SMALL_STATE(1590)] = 64074, - [SMALL_STATE(1591)] = 64100, - [SMALL_STATE(1592)] = 64124, - [SMALL_STATE(1593)] = 64150, - [SMALL_STATE(1594)] = 64172, - [SMALL_STATE(1595)] = 64189, - [SMALL_STATE(1596)] = 64204, - [SMALL_STATE(1597)] = 64219, - [SMALL_STATE(1598)] = 64234, - [SMALL_STATE(1599)] = 64253, - [SMALL_STATE(1600)] = 64268, - [SMALL_STATE(1601)] = 64293, - [SMALL_STATE(1602)] = 64312, - [SMALL_STATE(1603)] = 64327, - [SMALL_STATE(1604)] = 64342, - [SMALL_STATE(1605)] = 64357, - [SMALL_STATE(1606)] = 64372, - [SMALL_STATE(1607)] = 64395, - [SMALL_STATE(1608)] = 64418, - [SMALL_STATE(1609)] = 64433, - [SMALL_STATE(1610)] = 64456, - [SMALL_STATE(1611)] = 64474, - [SMALL_STATE(1612)] = 64488, - [SMALL_STATE(1613)] = 64506, - [SMALL_STATE(1614)] = 64520, - [SMALL_STATE(1615)] = 64534, - [SMALL_STATE(1616)] = 64548, - [SMALL_STATE(1617)] = 64562, - [SMALL_STATE(1618)] = 64576, - [SMALL_STATE(1619)] = 64592, - [SMALL_STATE(1620)] = 64610, - [SMALL_STATE(1621)] = 64628, - [SMALL_STATE(1622)] = 64644, - [SMALL_STATE(1623)] = 64662, - [SMALL_STATE(1624)] = 64676, - [SMALL_STATE(1625)] = 64690, - [SMALL_STATE(1626)] = 64704, - [SMALL_STATE(1627)] = 64720, - [SMALL_STATE(1628)] = 64734, - [SMALL_STATE(1629)] = 64748, - [SMALL_STATE(1630)] = 64762, - [SMALL_STATE(1631)] = 64780, - [SMALL_STATE(1632)] = 64794, - [SMALL_STATE(1633)] = 64812, - [SMALL_STATE(1634)] = 64826, - [SMALL_STATE(1635)] = 64842, - [SMALL_STATE(1636)] = 64858, - [SMALL_STATE(1637)] = 64872, - [SMALL_STATE(1638)] = 64886, - [SMALL_STATE(1639)] = 64902, - [SMALL_STATE(1640)] = 64916, - [SMALL_STATE(1641)] = 64930, - [SMALL_STATE(1642)] = 64941, - [SMALL_STATE(1643)] = 64954, - [SMALL_STATE(1644)] = 64965, - [SMALL_STATE(1645)] = 64976, - [SMALL_STATE(1646)] = 64987, - [SMALL_STATE(1647)] = 64998, - [SMALL_STATE(1648)] = 65009, - [SMALL_STATE(1649)] = 65028, - [SMALL_STATE(1650)] = 65045, - [SMALL_STATE(1651)] = 65062, - [SMALL_STATE(1652)] = 65073, - [SMALL_STATE(1653)] = 65084, - [SMALL_STATE(1654)] = 65103, - [SMALL_STATE(1655)] = 65122, - [SMALL_STATE(1656)] = 65133, - [SMALL_STATE(1657)] = 65144, - [SMALL_STATE(1658)] = 65155, - [SMALL_STATE(1659)] = 65166, - [SMALL_STATE(1660)] = 65176, - [SMALL_STATE(1661)] = 65192, - [SMALL_STATE(1662)] = 65206, - [SMALL_STATE(1663)] = 65220, - [SMALL_STATE(1664)] = 65234, - [SMALL_STATE(1665)] = 65250, - [SMALL_STATE(1666)] = 65266, - [SMALL_STATE(1667)] = 65282, - [SMALL_STATE(1668)] = 65298, - [SMALL_STATE(1669)] = 65312, - [SMALL_STATE(1670)] = 65328, - [SMALL_STATE(1671)] = 65342, - [SMALL_STATE(1672)] = 65356, - [SMALL_STATE(1673)] = 65372, - [SMALL_STATE(1674)] = 65386, - [SMALL_STATE(1675)] = 65400, - [SMALL_STATE(1676)] = 65414, - [SMALL_STATE(1677)] = 65428, - [SMALL_STATE(1678)] = 65444, - [SMALL_STATE(1679)] = 65458, - [SMALL_STATE(1680)] = 65472, - [SMALL_STATE(1681)] = 65488, - [SMALL_STATE(1682)] = 65502, - [SMALL_STATE(1683)] = 65518, - [SMALL_STATE(1684)] = 65532, - [SMALL_STATE(1685)] = 65548, - [SMALL_STATE(1686)] = 65562, - [SMALL_STATE(1687)] = 65576, - [SMALL_STATE(1688)] = 65590, - [SMALL_STATE(1689)] = 65604, - [SMALL_STATE(1690)] = 65620, - [SMALL_STATE(1691)] = 65634, - [SMALL_STATE(1692)] = 65648, - [SMALL_STATE(1693)] = 65662, - [SMALL_STATE(1694)] = 65678, - [SMALL_STATE(1695)] = 65692, - [SMALL_STATE(1696)] = 65706, - [SMALL_STATE(1697)] = 65720, - [SMALL_STATE(1698)] = 65734, - [SMALL_STATE(1699)] = 65750, - [SMALL_STATE(1700)] = 65764, - [SMALL_STATE(1701)] = 65778, - [SMALL_STATE(1702)] = 65792, - [SMALL_STATE(1703)] = 65806, - [SMALL_STATE(1704)] = 65820, - [SMALL_STATE(1705)] = 65834, - [SMALL_STATE(1706)] = 65850, - [SMALL_STATE(1707)] = 65864, - [SMALL_STATE(1708)] = 65878, - [SMALL_STATE(1709)] = 65892, - [SMALL_STATE(1710)] = 65908, - [SMALL_STATE(1711)] = 65922, - [SMALL_STATE(1712)] = 65936, - [SMALL_STATE(1713)] = 65952, - [SMALL_STATE(1714)] = 65966, - [SMALL_STATE(1715)] = 65980, - [SMALL_STATE(1716)] = 65994, - [SMALL_STATE(1717)] = 66008, - [SMALL_STATE(1718)] = 66024, - [SMALL_STATE(1719)] = 66038, - [SMALL_STATE(1720)] = 66052, - [SMALL_STATE(1721)] = 66066, - [SMALL_STATE(1722)] = 66080, - [SMALL_STATE(1723)] = 66096, - [SMALL_STATE(1724)] = 66106, - [SMALL_STATE(1725)] = 66120, - [SMALL_STATE(1726)] = 66134, - [SMALL_STATE(1727)] = 66148, - [SMALL_STATE(1728)] = 66162, - [SMALL_STATE(1729)] = 66176, - [SMALL_STATE(1730)] = 66192, - [SMALL_STATE(1731)] = 66208, - [SMALL_STATE(1732)] = 66224, - [SMALL_STATE(1733)] = 66237, - [SMALL_STATE(1734)] = 66250, - [SMALL_STATE(1735)] = 66263, - [SMALL_STATE(1736)] = 66274, - [SMALL_STATE(1737)] = 66283, - [SMALL_STATE(1738)] = 66296, - [SMALL_STATE(1739)] = 66309, - [SMALL_STATE(1740)] = 66322, - [SMALL_STATE(1741)] = 66335, - [SMALL_STATE(1742)] = 66346, - [SMALL_STATE(1743)] = 66355, - [SMALL_STATE(1744)] = 66368, - [SMALL_STATE(1745)] = 66381, - [SMALL_STATE(1746)] = 66394, - [SMALL_STATE(1747)] = 66403, - [SMALL_STATE(1748)] = 66416, - [SMALL_STATE(1749)] = 66429, - [SMALL_STATE(1750)] = 66442, - [SMALL_STATE(1751)] = 66455, - [SMALL_STATE(1752)] = 66468, - [SMALL_STATE(1753)] = 66481, - [SMALL_STATE(1754)] = 66494, - [SMALL_STATE(1755)] = 66507, - [SMALL_STATE(1756)] = 66520, - [SMALL_STATE(1757)] = 66533, - [SMALL_STATE(1758)] = 66546, - [SMALL_STATE(1759)] = 66559, - [SMALL_STATE(1760)] = 66572, - [SMALL_STATE(1761)] = 66585, - [SMALL_STATE(1762)] = 66598, - [SMALL_STATE(1763)] = 66611, - [SMALL_STATE(1764)] = 66624, - [SMALL_STATE(1765)] = 66637, - [SMALL_STATE(1766)] = 66650, - [SMALL_STATE(1767)] = 66663, - [SMALL_STATE(1768)] = 66674, - [SMALL_STATE(1769)] = 66687, - [SMALL_STATE(1770)] = 66700, - [SMALL_STATE(1771)] = 66713, - [SMALL_STATE(1772)] = 66726, - [SMALL_STATE(1773)] = 66739, - [SMALL_STATE(1774)] = 66752, - [SMALL_STATE(1775)] = 66765, - [SMALL_STATE(1776)] = 66778, - [SMALL_STATE(1777)] = 66791, - [SMALL_STATE(1778)] = 66800, - [SMALL_STATE(1779)] = 66813, - [SMALL_STATE(1780)] = 66826, - [SMALL_STATE(1781)] = 66839, - [SMALL_STATE(1782)] = 66848, - [SMALL_STATE(1783)] = 66861, - [SMALL_STATE(1784)] = 66874, - [SMALL_STATE(1785)] = 66887, - [SMALL_STATE(1786)] = 66896, - [SMALL_STATE(1787)] = 66909, - [SMALL_STATE(1788)] = 66922, - [SMALL_STATE(1789)] = 66935, - [SMALL_STATE(1790)] = 66948, - [SMALL_STATE(1791)] = 66961, - [SMALL_STATE(1792)] = 66974, - [SMALL_STATE(1793)] = 66983, - [SMALL_STATE(1794)] = 66996, - [SMALL_STATE(1795)] = 67009, - [SMALL_STATE(1796)] = 67022, - [SMALL_STATE(1797)] = 67035, - [SMALL_STATE(1798)] = 67048, - [SMALL_STATE(1799)] = 67061, - [SMALL_STATE(1800)] = 67074, - [SMALL_STATE(1801)] = 67087, - [SMALL_STATE(1802)] = 67100, - [SMALL_STATE(1803)] = 67111, - [SMALL_STATE(1804)] = 67124, - [SMALL_STATE(1805)] = 67137, - [SMALL_STATE(1806)] = 67150, - [SMALL_STATE(1807)] = 67163, - [SMALL_STATE(1808)] = 67174, - [SMALL_STATE(1809)] = 67187, - [SMALL_STATE(1810)] = 67200, - [SMALL_STATE(1811)] = 67209, - [SMALL_STATE(1812)] = 67222, - [SMALL_STATE(1813)] = 67231, - [SMALL_STATE(1814)] = 67244, - [SMALL_STATE(1815)] = 67255, - [SMALL_STATE(1816)] = 67268, - [SMALL_STATE(1817)] = 67281, - [SMALL_STATE(1818)] = 67294, - [SMALL_STATE(1819)] = 67303, - [SMALL_STATE(1820)] = 67312, - [SMALL_STATE(1821)] = 67325, - [SMALL_STATE(1822)] = 67338, - [SMALL_STATE(1823)] = 67351, - [SMALL_STATE(1824)] = 67364, - [SMALL_STATE(1825)] = 67374, - [SMALL_STATE(1826)] = 67384, - [SMALL_STATE(1827)] = 67394, - [SMALL_STATE(1828)] = 67404, - [SMALL_STATE(1829)] = 67412, - [SMALL_STATE(1830)] = 67422, - [SMALL_STATE(1831)] = 67432, - [SMALL_STATE(1832)] = 67442, - [SMALL_STATE(1833)] = 67452, - [SMALL_STATE(1834)] = 67462, - [SMALL_STATE(1835)] = 67472, - [SMALL_STATE(1836)] = 67482, - [SMALL_STATE(1837)] = 67492, - [SMALL_STATE(1838)] = 67502, - [SMALL_STATE(1839)] = 67510, - [SMALL_STATE(1840)] = 67520, - [SMALL_STATE(1841)] = 67530, - [SMALL_STATE(1842)] = 67540, - [SMALL_STATE(1843)] = 67548, - [SMALL_STATE(1844)] = 67558, - [SMALL_STATE(1845)] = 67568, - [SMALL_STATE(1846)] = 67578, - [SMALL_STATE(1847)] = 67588, - [SMALL_STATE(1848)] = 67598, - [SMALL_STATE(1849)] = 67608, - [SMALL_STATE(1850)] = 67618, - [SMALL_STATE(1851)] = 67628, - [SMALL_STATE(1852)] = 67636, - [SMALL_STATE(1853)] = 67646, - [SMALL_STATE(1854)] = 67656, - [SMALL_STATE(1855)] = 67666, - [SMALL_STATE(1856)] = 67676, - [SMALL_STATE(1857)] = 67684, - [SMALL_STATE(1858)] = 67694, - [SMALL_STATE(1859)] = 67704, - [SMALL_STATE(1860)] = 67712, - [SMALL_STATE(1861)] = 67722, - [SMALL_STATE(1862)] = 67732, - [SMALL_STATE(1863)] = 67742, - [SMALL_STATE(1864)] = 67752, - [SMALL_STATE(1865)] = 67760, - [SMALL_STATE(1866)] = 67770, - [SMALL_STATE(1867)] = 67780, - [SMALL_STATE(1868)] = 67790, - [SMALL_STATE(1869)] = 67800, - [SMALL_STATE(1870)] = 67808, - [SMALL_STATE(1871)] = 67818, - [SMALL_STATE(1872)] = 67828, - [SMALL_STATE(1873)] = 67838, - [SMALL_STATE(1874)] = 67846, - [SMALL_STATE(1875)] = 67854, - [SMALL_STATE(1876)] = 67862, - [SMALL_STATE(1877)] = 67872, - [SMALL_STATE(1878)] = 67882, - [SMALL_STATE(1879)] = 67892, - [SMALL_STATE(1880)] = 67902, - [SMALL_STATE(1881)] = 67912, - [SMALL_STATE(1882)] = 67922, - [SMALL_STATE(1883)] = 67932, - [SMALL_STATE(1884)] = 67942, - [SMALL_STATE(1885)] = 67952, - [SMALL_STATE(1886)] = 67962, - [SMALL_STATE(1887)] = 67970, - [SMALL_STATE(1888)] = 67980, - [SMALL_STATE(1889)] = 67990, - [SMALL_STATE(1890)] = 68000, - [SMALL_STATE(1891)] = 68010, - [SMALL_STATE(1892)] = 68020, - [SMALL_STATE(1893)] = 68028, - [SMALL_STATE(1894)] = 68038, - [SMALL_STATE(1895)] = 68046, - [SMALL_STATE(1896)] = 68056, - [SMALL_STATE(1897)] = 68066, - [SMALL_STATE(1898)] = 68074, - [SMALL_STATE(1899)] = 68084, - [SMALL_STATE(1900)] = 68094, - [SMALL_STATE(1901)] = 68104, - [SMALL_STATE(1902)] = 68114, - [SMALL_STATE(1903)] = 68124, - [SMALL_STATE(1904)] = 68132, - [SMALL_STATE(1905)] = 68140, - [SMALL_STATE(1906)] = 68150, - [SMALL_STATE(1907)] = 68160, - [SMALL_STATE(1908)] = 68168, - [SMALL_STATE(1909)] = 68178, - [SMALL_STATE(1910)] = 68188, - [SMALL_STATE(1911)] = 68198, - [SMALL_STATE(1912)] = 68208, - [SMALL_STATE(1913)] = 68218, - [SMALL_STATE(1914)] = 68228, - [SMALL_STATE(1915)] = 68238, - [SMALL_STATE(1916)] = 68248, - [SMALL_STATE(1917)] = 68258, - [SMALL_STATE(1918)] = 68268, - [SMALL_STATE(1919)] = 68278, - [SMALL_STATE(1920)] = 68288, - [SMALL_STATE(1921)] = 68298, - [SMALL_STATE(1922)] = 68308, - [SMALL_STATE(1923)] = 68318, - [SMALL_STATE(1924)] = 68328, - [SMALL_STATE(1925)] = 68338, - [SMALL_STATE(1926)] = 68345, - [SMALL_STATE(1927)] = 68352, - [SMALL_STATE(1928)] = 68359, - [SMALL_STATE(1929)] = 68366, - [SMALL_STATE(1930)] = 68373, - [SMALL_STATE(1931)] = 68380, - [SMALL_STATE(1932)] = 68387, - [SMALL_STATE(1933)] = 68394, - [SMALL_STATE(1934)] = 68401, - [SMALL_STATE(1935)] = 68408, - [SMALL_STATE(1936)] = 68415, - [SMALL_STATE(1937)] = 68422, - [SMALL_STATE(1938)] = 68429, - [SMALL_STATE(1939)] = 68436, - [SMALL_STATE(1940)] = 68443, - [SMALL_STATE(1941)] = 68450, - [SMALL_STATE(1942)] = 68457, - [SMALL_STATE(1943)] = 68464, - [SMALL_STATE(1944)] = 68471, - [SMALL_STATE(1945)] = 68478, - [SMALL_STATE(1946)] = 68485, - [SMALL_STATE(1947)] = 68492, - [SMALL_STATE(1948)] = 68499, - [SMALL_STATE(1949)] = 68506, - [SMALL_STATE(1950)] = 68513, - [SMALL_STATE(1951)] = 68520, - [SMALL_STATE(1952)] = 68527, - [SMALL_STATE(1953)] = 68534, - [SMALL_STATE(1954)] = 68541, - [SMALL_STATE(1955)] = 68548, - [SMALL_STATE(1956)] = 68555, - [SMALL_STATE(1957)] = 68562, - [SMALL_STATE(1958)] = 68569, - [SMALL_STATE(1959)] = 68576, - [SMALL_STATE(1960)] = 68583, - [SMALL_STATE(1961)] = 68590, - [SMALL_STATE(1962)] = 68597, - [SMALL_STATE(1963)] = 68604, - [SMALL_STATE(1964)] = 68611, - [SMALL_STATE(1965)] = 68618, - [SMALL_STATE(1966)] = 68625, - [SMALL_STATE(1967)] = 68632, - [SMALL_STATE(1968)] = 68639, - [SMALL_STATE(1969)] = 68646, - [SMALL_STATE(1970)] = 68653, - [SMALL_STATE(1971)] = 68660, - [SMALL_STATE(1972)] = 68667, - [SMALL_STATE(1973)] = 68674, - [SMALL_STATE(1974)] = 68681, - [SMALL_STATE(1975)] = 68688, - [SMALL_STATE(1976)] = 68695, - [SMALL_STATE(1977)] = 68702, - [SMALL_STATE(1978)] = 68709, - [SMALL_STATE(1979)] = 68716, - [SMALL_STATE(1980)] = 68723, - [SMALL_STATE(1981)] = 68730, - [SMALL_STATE(1982)] = 68737, - [SMALL_STATE(1983)] = 68744, - [SMALL_STATE(1984)] = 68751, - [SMALL_STATE(1985)] = 68758, - [SMALL_STATE(1986)] = 68765, - [SMALL_STATE(1987)] = 68772, - [SMALL_STATE(1988)] = 68779, - [SMALL_STATE(1989)] = 68786, - [SMALL_STATE(1990)] = 68793, - [SMALL_STATE(1991)] = 68800, - [SMALL_STATE(1992)] = 68807, - [SMALL_STATE(1993)] = 68814, - [SMALL_STATE(1994)] = 68821, - [SMALL_STATE(1995)] = 68828, - [SMALL_STATE(1996)] = 68835, - [SMALL_STATE(1997)] = 68842, - [SMALL_STATE(1998)] = 68849, - [SMALL_STATE(1999)] = 68856, - [SMALL_STATE(2000)] = 68863, - [SMALL_STATE(2001)] = 68870, - [SMALL_STATE(2002)] = 68877, - [SMALL_STATE(2003)] = 68884, - [SMALL_STATE(2004)] = 68891, - [SMALL_STATE(2005)] = 68898, - [SMALL_STATE(2006)] = 68905, - [SMALL_STATE(2007)] = 68912, - [SMALL_STATE(2008)] = 68919, - [SMALL_STATE(2009)] = 68926, - [SMALL_STATE(2010)] = 68933, - [SMALL_STATE(2011)] = 68940, - [SMALL_STATE(2012)] = 68947, - [SMALL_STATE(2013)] = 68954, - [SMALL_STATE(2014)] = 68961, - [SMALL_STATE(2015)] = 68968, - [SMALL_STATE(2016)] = 68975, - [SMALL_STATE(2017)] = 68982, - [SMALL_STATE(2018)] = 68989, - [SMALL_STATE(2019)] = 68996, - [SMALL_STATE(2020)] = 69003, - [SMALL_STATE(2021)] = 69010, - [SMALL_STATE(2022)] = 69017, - [SMALL_STATE(2023)] = 69024, - [SMALL_STATE(2024)] = 69031, - [SMALL_STATE(2025)] = 69038, - [SMALL_STATE(2026)] = 69045, - [SMALL_STATE(2027)] = 69052, - [SMALL_STATE(2028)] = 69059, - [SMALL_STATE(2029)] = 69066, - [SMALL_STATE(2030)] = 69073, - [SMALL_STATE(2031)] = 69080, - [SMALL_STATE(2032)] = 69087, - [SMALL_STATE(2033)] = 69094, - [SMALL_STATE(2034)] = 69101, - [SMALL_STATE(2035)] = 69108, - [SMALL_STATE(2036)] = 69115, - [SMALL_STATE(2037)] = 69122, - [SMALL_STATE(2038)] = 69129, - [SMALL_STATE(2039)] = 69136, - [SMALL_STATE(2040)] = 69143, - [SMALL_STATE(2041)] = 69150, - [SMALL_STATE(2042)] = 69157, - [SMALL_STATE(2043)] = 69164, - [SMALL_STATE(2044)] = 69171, - [SMALL_STATE(2045)] = 69178, - [SMALL_STATE(2046)] = 69185, - [SMALL_STATE(2047)] = 69192, - [SMALL_STATE(2048)] = 69199, - [SMALL_STATE(2049)] = 69206, - [SMALL_STATE(2050)] = 69213, - [SMALL_STATE(2051)] = 69220, - [SMALL_STATE(2052)] = 69227, - [SMALL_STATE(2053)] = 69234, - [SMALL_STATE(2054)] = 69241, - [SMALL_STATE(2055)] = 69248, - [SMALL_STATE(2056)] = 69255, - [SMALL_STATE(2057)] = 69262, - [SMALL_STATE(2058)] = 69269, - [SMALL_STATE(2059)] = 69276, - [SMALL_STATE(2060)] = 69283, - [SMALL_STATE(2061)] = 69290, - [SMALL_STATE(2062)] = 69297, - [SMALL_STATE(2063)] = 69304, - [SMALL_STATE(2064)] = 69311, - [SMALL_STATE(2065)] = 69318, - [SMALL_STATE(2066)] = 69325, - [SMALL_STATE(2067)] = 69332, - [SMALL_STATE(2068)] = 69339, - [SMALL_STATE(2069)] = 69346, - [SMALL_STATE(2070)] = 69353, - [SMALL_STATE(2071)] = 69360, - [SMALL_STATE(2072)] = 69367, - [SMALL_STATE(2073)] = 69374, - [SMALL_STATE(2074)] = 69381, - [SMALL_STATE(2075)] = 69388, - [SMALL_STATE(2076)] = 69395, - [SMALL_STATE(2077)] = 69402, - [SMALL_STATE(2078)] = 69409, - [SMALL_STATE(2079)] = 69416, - [SMALL_STATE(2080)] = 69423, - [SMALL_STATE(2081)] = 69430, - [SMALL_STATE(2082)] = 69437, - [SMALL_STATE(2083)] = 69444, - [SMALL_STATE(2084)] = 69451, - [SMALL_STATE(2085)] = 69458, - [SMALL_STATE(2086)] = 69465, - [SMALL_STATE(2087)] = 69472, - [SMALL_STATE(2088)] = 69479, - [SMALL_STATE(2089)] = 69486, - [SMALL_STATE(2090)] = 69493, - [SMALL_STATE(2091)] = 69500, - [SMALL_STATE(2092)] = 69507, - [SMALL_STATE(2093)] = 69514, - [SMALL_STATE(2094)] = 69521, - [SMALL_STATE(2095)] = 69528, - [SMALL_STATE(2096)] = 69535, - [SMALL_STATE(2097)] = 69542, - [SMALL_STATE(2098)] = 69549, - [SMALL_STATE(2099)] = 69556, - [SMALL_STATE(2100)] = 69563, - [SMALL_STATE(2101)] = 69570, - [SMALL_STATE(2102)] = 69577, - [SMALL_STATE(2103)] = 69584, - [SMALL_STATE(2104)] = 69591, - [SMALL_STATE(2105)] = 69598, - [SMALL_STATE(2106)] = 69605, - [SMALL_STATE(2107)] = 69612, - [SMALL_STATE(2108)] = 69619, - [SMALL_STATE(2109)] = 69626, - [SMALL_STATE(2110)] = 69633, - [SMALL_STATE(2111)] = 69640, - [SMALL_STATE(2112)] = 69647, - [SMALL_STATE(2113)] = 69654, - [SMALL_STATE(2114)] = 69661, - [SMALL_STATE(2115)] = 69668, - [SMALL_STATE(2116)] = 69675, - [SMALL_STATE(2117)] = 69682, - [SMALL_STATE(2118)] = 69689, - [SMALL_STATE(2119)] = 69696, - [SMALL_STATE(2120)] = 69703, - [SMALL_STATE(2121)] = 69710, - [SMALL_STATE(2122)] = 69717, - [SMALL_STATE(2123)] = 69724, - [SMALL_STATE(2124)] = 69731, - [SMALL_STATE(2125)] = 69738, - [SMALL_STATE(2126)] = 69745, - [SMALL_STATE(2127)] = 69752, - [SMALL_STATE(2128)] = 69759, - [SMALL_STATE(2129)] = 69766, - [SMALL_STATE(2130)] = 69773, - [SMALL_STATE(2131)] = 69780, - [SMALL_STATE(2132)] = 69787, - [SMALL_STATE(2133)] = 69794, - [SMALL_STATE(2134)] = 69801, - [SMALL_STATE(2135)] = 69808, - [SMALL_STATE(2136)] = 69815, - [SMALL_STATE(2137)] = 69822, - [SMALL_STATE(2138)] = 69829, - [SMALL_STATE(2139)] = 69836, - [SMALL_STATE(2140)] = 69843, - [SMALL_STATE(2141)] = 69850, - [SMALL_STATE(2142)] = 69857, - [SMALL_STATE(2143)] = 69864, - [SMALL_STATE(2144)] = 69871, - [SMALL_STATE(2145)] = 69878, - [SMALL_STATE(2146)] = 69885, - [SMALL_STATE(2147)] = 69892, - [SMALL_STATE(2148)] = 69899, - [SMALL_STATE(2149)] = 69906, - [SMALL_STATE(2150)] = 69913, - [SMALL_STATE(2151)] = 69920, - [SMALL_STATE(2152)] = 69927, - [SMALL_STATE(2153)] = 69934, - [SMALL_STATE(2154)] = 69941, - [SMALL_STATE(2155)] = 69948, - [SMALL_STATE(2156)] = 69955, - [SMALL_STATE(2157)] = 69962, - [SMALL_STATE(2158)] = 69969, - [SMALL_STATE(2159)] = 69976, - [SMALL_STATE(2160)] = 69983, - [SMALL_STATE(2161)] = 69990, - [SMALL_STATE(2162)] = 69997, - [SMALL_STATE(2163)] = 70004, - [SMALL_STATE(2164)] = 70011, - [SMALL_STATE(2165)] = 70018, - [SMALL_STATE(2166)] = 70025, - [SMALL_STATE(2167)] = 70032, - [SMALL_STATE(2168)] = 70039, - [SMALL_STATE(2169)] = 70046, - [SMALL_STATE(2170)] = 70053, - [SMALL_STATE(2171)] = 70060, - [SMALL_STATE(2172)] = 70067, - [SMALL_STATE(2173)] = 70074, - [SMALL_STATE(2174)] = 70081, - [SMALL_STATE(2175)] = 70088, - [SMALL_STATE(2176)] = 70095, - [SMALL_STATE(2177)] = 70102, - [SMALL_STATE(2178)] = 70109, - [SMALL_STATE(2179)] = 70116, - [SMALL_STATE(2180)] = 70123, - [SMALL_STATE(2181)] = 70130, - [SMALL_STATE(2182)] = 70137, - [SMALL_STATE(2183)] = 70144, - [SMALL_STATE(2184)] = 70151, - [SMALL_STATE(2185)] = 70158, - [SMALL_STATE(2186)] = 70165, - [SMALL_STATE(2187)] = 70172, - [SMALL_STATE(2188)] = 70179, - [SMALL_STATE(2189)] = 70186, - [SMALL_STATE(2190)] = 70193, - [SMALL_STATE(2191)] = 70200, - [SMALL_STATE(2192)] = 70207, - [SMALL_STATE(2193)] = 70214, - [SMALL_STATE(2194)] = 70221, - [SMALL_STATE(2195)] = 70228, - [SMALL_STATE(2196)] = 70235, - [SMALL_STATE(2197)] = 70242, - [SMALL_STATE(2198)] = 70249, - [SMALL_STATE(2199)] = 70256, - [SMALL_STATE(2200)] = 70263, - [SMALL_STATE(2201)] = 70270, - [SMALL_STATE(2202)] = 70277, - [SMALL_STATE(2203)] = 70284, - [SMALL_STATE(2204)] = 70291, - [SMALL_STATE(2205)] = 70298, - [SMALL_STATE(2206)] = 70305, - [SMALL_STATE(2207)] = 70312, - [SMALL_STATE(2208)] = 70319, - [SMALL_STATE(2209)] = 70326, - [SMALL_STATE(2210)] = 70333, - [SMALL_STATE(2211)] = 70340, - [SMALL_STATE(2212)] = 70347, - [SMALL_STATE(2213)] = 70354, + [SMALL_STATE(995)] = 36559, + [SMALL_STATE(996)] = 36624, + [SMALL_STATE(997)] = 36671, + [SMALL_STATE(998)] = 36754, + [SMALL_STATE(999)] = 36801, + [SMALL_STATE(1000)] = 36858, + [SMALL_STATE(1001)] = 36917, + [SMALL_STATE(1002)] = 37000, + [SMALL_STATE(1003)] = 37059, + [SMALL_STATE(1004)] = 37106, + [SMALL_STATE(1005)] = 37153, + [SMALL_STATE(1006)] = 37212, + [SMALL_STATE(1007)] = 37259, + [SMALL_STATE(1008)] = 37312, + [SMALL_STATE(1009)] = 37367, + [SMALL_STATE(1010)] = 37414, + [SMALL_STATE(1011)] = 37461, + [SMALL_STATE(1012)] = 37508, + [SMALL_STATE(1013)] = 37555, + [SMALL_STATE(1014)] = 37602, + [SMALL_STATE(1015)] = 37657, + [SMALL_STATE(1016)] = 37704, + [SMALL_STATE(1017)] = 37751, + [SMALL_STATE(1018)] = 37797, + [SMALL_STATE(1019)] = 37843, + [SMALL_STATE(1020)] = 37889, + [SMALL_STATE(1021)] = 37939, + [SMALL_STATE(1022)] = 37985, + [SMALL_STATE(1023)] = 38031, + [SMALL_STATE(1024)] = 38076, + [SMALL_STATE(1025)] = 38125, + [SMALL_STATE(1026)] = 38170, + [SMALL_STATE(1027)] = 38219, + [SMALL_STATE(1028)] = 38264, + [SMALL_STATE(1029)] = 38309, + [SMALL_STATE(1030)] = 38354, + [SMALL_STATE(1031)] = 38399, + [SMALL_STATE(1032)] = 38444, + [SMALL_STATE(1033)] = 38489, + [SMALL_STATE(1034)] = 38534, + [SMALL_STATE(1035)] = 38579, + [SMALL_STATE(1036)] = 38624, + [SMALL_STATE(1037)] = 38669, + [SMALL_STATE(1038)] = 38718, + [SMALL_STATE(1039)] = 38763, + [SMALL_STATE(1040)] = 38820, + [SMALL_STATE(1041)] = 38865, + [SMALL_STATE(1042)] = 38910, + [SMALL_STATE(1043)] = 38955, + [SMALL_STATE(1044)] = 39000, + [SMALL_STATE(1045)] = 39045, + [SMALL_STATE(1046)] = 39090, + [SMALL_STATE(1047)] = 39139, + [SMALL_STATE(1048)] = 39184, + [SMALL_STATE(1049)] = 39229, + [SMALL_STATE(1050)] = 39274, + [SMALL_STATE(1051)] = 39319, + [SMALL_STATE(1052)] = 39364, + [SMALL_STATE(1053)] = 39409, + [SMALL_STATE(1054)] = 39454, + [SMALL_STATE(1055)] = 39503, + [SMALL_STATE(1056)] = 39548, + [SMALL_STATE(1057)] = 39597, + [SMALL_STATE(1058)] = 39646, + [SMALL_STATE(1059)] = 39691, + [SMALL_STATE(1060)] = 39736, + [SMALL_STATE(1061)] = 39781, + [SMALL_STATE(1062)] = 39826, + [SMALL_STATE(1063)] = 39883, + [SMALL_STATE(1064)] = 39928, + [SMALL_STATE(1065)] = 39977, + [SMALL_STATE(1066)] = 40026, + [SMALL_STATE(1067)] = 40075, + [SMALL_STATE(1068)] = 40120, + [SMALL_STATE(1069)] = 40169, + [SMALL_STATE(1070)] = 40218, + [SMALL_STATE(1071)] = 40267, + [SMALL_STATE(1072)] = 40316, + [SMALL_STATE(1073)] = 40361, + [SMALL_STATE(1074)] = 40418, + [SMALL_STATE(1075)] = 40475, + [SMALL_STATE(1076)] = 40520, + [SMALL_STATE(1077)] = 40565, + [SMALL_STATE(1078)] = 40614, + [SMALL_STATE(1079)] = 40663, + [SMALL_STATE(1080)] = 40711, + [SMALL_STATE(1081)] = 40763, + [SMALL_STATE(1082)] = 40807, + [SMALL_STATE(1083)] = 40851, + [SMALL_STATE(1084)] = 40895, + [SMALL_STATE(1085)] = 40939, + [SMALL_STATE(1086)] = 40987, + [SMALL_STATE(1087)] = 41031, + [SMALL_STATE(1088)] = 41075, + [SMALL_STATE(1089)] = 41119, + [SMALL_STATE(1090)] = 41167, + [SMALL_STATE(1091)] = 41217, + [SMALL_STATE(1092)] = 41261, + [SMALL_STATE(1093)] = 41309, + [SMALL_STATE(1094)] = 41357, + [SMALL_STATE(1095)] = 41405, + [SMALL_STATE(1096)] = 41449, + [SMALL_STATE(1097)] = 41493, + [SMALL_STATE(1098)] = 41537, + [SMALL_STATE(1099)] = 41581, + [SMALL_STATE(1100)] = 41625, + [SMALL_STATE(1101)] = 41669, + [SMALL_STATE(1102)] = 41713, + [SMALL_STATE(1103)] = 41757, + [SMALL_STATE(1104)] = 41801, + [SMALL_STATE(1105)] = 41845, + [SMALL_STATE(1106)] = 41889, + [SMALL_STATE(1107)] = 41933, + [SMALL_STATE(1108)] = 41983, + [SMALL_STATE(1109)] = 42027, + [SMALL_STATE(1110)] = 42075, + [SMALL_STATE(1111)] = 42119, + [SMALL_STATE(1112)] = 42163, + [SMALL_STATE(1113)] = 42207, + [SMALL_STATE(1114)] = 42251, + [SMALL_STATE(1115)] = 42295, + [SMALL_STATE(1116)] = 42339, + [SMALL_STATE(1117)] = 42383, + [SMALL_STATE(1118)] = 42452, + [SMALL_STATE(1119)] = 42507, + [SMALL_STATE(1120)] = 42576, + [SMALL_STATE(1121)] = 42645, + [SMALL_STATE(1122)] = 42714, + [SMALL_STATE(1123)] = 42766, + [SMALL_STATE(1124)] = 42822, + [SMALL_STATE(1125)] = 42872, + [SMALL_STATE(1126)] = 42928, + [SMALL_STATE(1127)] = 42980, + [SMALL_STATE(1128)] = 43036, + [SMALL_STATE(1129)] = 43092, + [SMALL_STATE(1130)] = 43148, + [SMALL_STATE(1131)] = 43211, + [SMALL_STATE(1132)] = 43276, + [SMALL_STATE(1133)] = 43343, + [SMALL_STATE(1134)] = 43414, + [SMALL_STATE(1135)] = 43483, + [SMALL_STATE(1136)] = 43556, + [SMALL_STATE(1137)] = 43611, + [SMALL_STATE(1138)] = 43688, + [SMALL_STATE(1139)] = 43765, + [SMALL_STATE(1140)] = 43814, + [SMALL_STATE(1141)] = 43891, + [SMALL_STATE(1142)] = 43950, + [SMALL_STATE(1143)] = 44007, + [SMALL_STATE(1144)] = 44084, + [SMALL_STATE(1145)] = 44126, + [SMALL_STATE(1146)] = 44166, + [SMALL_STATE(1147)] = 44208, + [SMALL_STATE(1148)] = 44262, + [SMALL_STATE(1149)] = 44332, + [SMALL_STATE(1150)] = 44406, + [SMALL_STATE(1151)] = 44474, + [SMALL_STATE(1152)] = 44516, + [SMALL_STATE(1153)] = 44584, + [SMALL_STATE(1154)] = 44650, + [SMALL_STATE(1155)] = 44692, + [SMALL_STATE(1156)] = 44756, + [SMALL_STATE(1157)] = 44796, + [SMALL_STATE(1158)] = 44858, + [SMALL_STATE(1159)] = 44898, + [SMALL_STATE(1160)] = 44956, + [SMALL_STATE(1161)] = 45012, + [SMALL_STATE(1162)] = 45054, + [SMALL_STATE(1163)] = 45128, + [SMALL_STATE(1164)] = 45202, + [SMALL_STATE(1165)] = 45242, + [SMALL_STATE(1166)] = 45305, + [SMALL_STATE(1167)] = 45348, + [SMALL_STATE(1168)] = 45421, + [SMALL_STATE(1169)] = 45474, + [SMALL_STATE(1170)] = 45547, + [SMALL_STATE(1171)] = 45590, + [SMALL_STATE(1172)] = 45645, + [SMALL_STATE(1173)] = 45718, + [SMALL_STATE(1174)] = 45775, + [SMALL_STATE(1175)] = 45814, + [SMALL_STATE(1176)] = 45875, + [SMALL_STATE(1177)] = 45938, + [SMALL_STATE(1178)] = 46003, + [SMALL_STATE(1179)] = 46070, + [SMALL_STATE(1180)] = 46137, + [SMALL_STATE(1181)] = 46180, + [SMALL_STATE(1182)] = 46253, + [SMALL_STATE(1183)] = 46322, + [SMALL_STATE(1184)] = 46382, + [SMALL_STATE(1185)] = 46442, + [SMALL_STATE(1186)] = 46502, + [SMALL_STATE(1187)] = 46562, + [SMALL_STATE(1188)] = 46622, + [SMALL_STATE(1189)] = 46682, + [SMALL_STATE(1190)] = 46742, + [SMALL_STATE(1191)] = 46802, + [SMALL_STATE(1192)] = 46877, + [SMALL_STATE(1193)] = 46952, + [SMALL_STATE(1194)] = 47027, + [SMALL_STATE(1195)] = 47102, + [SMALL_STATE(1196)] = 47177, + [SMALL_STATE(1197)] = 47252, + [SMALL_STATE(1198)] = 47327, + [SMALL_STATE(1199)] = 47400, + [SMALL_STATE(1200)] = 47471, + [SMALL_STATE(1201)] = 47546, + [SMALL_STATE(1202)] = 47614, + [SMALL_STATE(1203)] = 47670, + [SMALL_STATE(1204)] = 47726, + [SMALL_STATE(1205)] = 47782, + [SMALL_STATE(1206)] = 47838, + [SMALL_STATE(1207)] = 47900, + [SMALL_STATE(1208)] = 47964, + [SMALL_STATE(1209)] = 48038, + [SMALL_STATE(1210)] = 48104, + [SMALL_STATE(1211)] = 48176, + [SMALL_STATE(1212)] = 48232, + [SMALL_STATE(1213)] = 48304, + [SMALL_STATE(1214)] = 48360, + [SMALL_STATE(1215)] = 48426, + [SMALL_STATE(1216)] = 48478, + [SMALL_STATE(1217)] = 48534, + [SMALL_STATE(1218)] = 48606, + [SMALL_STATE(1219)] = 48678, + [SMALL_STATE(1220)] = 48750, + [SMALL_STATE(1221)] = 48810, + [SMALL_STATE(1222)] = 48882, + [SMALL_STATE(1223)] = 48952, + [SMALL_STATE(1224)] = 49008, + [SMALL_STATE(1225)] = 49078, + [SMALL_STATE(1226)] = 49150, + [SMALL_STATE(1227)] = 49222, + [SMALL_STATE(1228)] = 49278, + [SMALL_STATE(1229)] = 49348, + [SMALL_STATE(1230)] = 49404, + [SMALL_STATE(1231)] = 49476, + [SMALL_STATE(1232)] = 49532, + [SMALL_STATE(1233)] = 49588, + [SMALL_STATE(1234)] = 49660, + [SMALL_STATE(1235)] = 49716, + [SMALL_STATE(1236)] = 49788, + [SMALL_STATE(1237)] = 49842, + [SMALL_STATE(1238)] = 49898, + [SMALL_STATE(1239)] = 49970, + [SMALL_STATE(1240)] = 50042, + [SMALL_STATE(1241)] = 50114, + [SMALL_STATE(1242)] = 50186, + [SMALL_STATE(1243)] = 50242, + [SMALL_STATE(1244)] = 50314, + [SMALL_STATE(1245)] = 50384, + [SMALL_STATE(1246)] = 50456, + [SMALL_STATE(1247)] = 50528, + [SMALL_STATE(1248)] = 50584, + [SMALL_STATE(1249)] = 50654, + [SMALL_STATE(1250)] = 50726, + [SMALL_STATE(1251)] = 50796, + [SMALL_STATE(1252)] = 50868, + [SMALL_STATE(1253)] = 50924, + [SMALL_STATE(1254)] = 50996, + [SMALL_STATE(1255)] = 51052, + [SMALL_STATE(1256)] = 51124, + [SMALL_STATE(1257)] = 51196, + [SMALL_STATE(1258)] = 51266, + [SMALL_STATE(1259)] = 51338, + [SMALL_STATE(1260)] = 51394, + [SMALL_STATE(1261)] = 51466, + [SMALL_STATE(1262)] = 51538, + [SMALL_STATE(1263)] = 51608, + [SMALL_STATE(1264)] = 51661, + [SMALL_STATE(1265)] = 51730, + [SMALL_STATE(1266)] = 51799, + [SMALL_STATE(1267)] = 51868, + [SMALL_STATE(1268)] = 51937, + [SMALL_STATE(1269)] = 52006, + [SMALL_STATE(1270)] = 52075, + [SMALL_STATE(1271)] = 52144, + [SMALL_STATE(1272)] = 52213, + [SMALL_STATE(1273)] = 52282, + [SMALL_STATE(1274)] = 52351, + [SMALL_STATE(1275)] = 52420, + [SMALL_STATE(1276)] = 52489, + [SMALL_STATE(1277)] = 52542, + [SMALL_STATE(1278)] = 52611, + [SMALL_STATE(1279)] = 52680, + [SMALL_STATE(1280)] = 52749, + [SMALL_STATE(1281)] = 52802, + [SMALL_STATE(1282)] = 52855, + [SMALL_STATE(1283)] = 52924, + [SMALL_STATE(1284)] = 52993, + [SMALL_STATE(1285)] = 53062, + [SMALL_STATE(1286)] = 53131, + [SMALL_STATE(1287)] = 53200, + [SMALL_STATE(1288)] = 53253, + [SMALL_STATE(1289)] = 53322, + [SMALL_STATE(1290)] = 53391, + [SMALL_STATE(1291)] = 53444, + [SMALL_STATE(1292)] = 53513, + [SMALL_STATE(1293)] = 53582, + [SMALL_STATE(1294)] = 53651, + [SMALL_STATE(1295)] = 53720, + [SMALL_STATE(1296)] = 53789, + [SMALL_STATE(1297)] = 53828, + [SMALL_STATE(1298)] = 53897, + [SMALL_STATE(1299)] = 53966, + [SMALL_STATE(1300)] = 54035, + [SMALL_STATE(1301)] = 54104, + [SMALL_STATE(1302)] = 54148, + [SMALL_STATE(1303)] = 54214, + [SMALL_STATE(1304)] = 54256, + [SMALL_STATE(1305)] = 54298, + [SMALL_STATE(1306)] = 54334, + [SMALL_STATE(1307)] = 54370, + [SMALL_STATE(1308)] = 54406, + [SMALL_STATE(1309)] = 54442, + [SMALL_STATE(1310)] = 54489, + [SMALL_STATE(1311)] = 54520, + [SMALL_STATE(1312)] = 54551, + [SMALL_STATE(1313)] = 54598, + [SMALL_STATE(1314)] = 54645, + [SMALL_STATE(1315)] = 54692, + [SMALL_STATE(1316)] = 54739, + [SMALL_STATE(1317)] = 54786, + [SMALL_STATE(1318)] = 54822, + [SMALL_STATE(1319)] = 54866, + [SMALL_STATE(1320)] = 54910, + [SMALL_STATE(1321)] = 54954, + [SMALL_STATE(1322)] = 54998, + [SMALL_STATE(1323)] = 55042, + [SMALL_STATE(1324)] = 55086, + [SMALL_STATE(1325)] = 55120, + [SMALL_STATE(1326)] = 55158, + [SMALL_STATE(1327)] = 55201, + [SMALL_STATE(1328)] = 55256, + [SMALL_STATE(1329)] = 55311, + [SMALL_STATE(1330)] = 55354, + [SMALL_STATE(1331)] = 55409, + [SMALL_STATE(1332)] = 55442, + [SMALL_STATE(1333)] = 55485, + [SMALL_STATE(1334)] = 55525, + [SMALL_STATE(1335)] = 55553, + [SMALL_STATE(1336)] = 55581, + [SMALL_STATE(1337)] = 55621, + [SMALL_STATE(1338)] = 55661, + [SMALL_STATE(1339)] = 55701, + [SMALL_STATE(1340)] = 55741, + [SMALL_STATE(1341)] = 55781, + [SMALL_STATE(1342)] = 55821, + [SMALL_STATE(1343)] = 55861, + [SMALL_STATE(1344)] = 55901, + [SMALL_STATE(1345)] = 55941, + [SMALL_STATE(1346)] = 55991, + [SMALL_STATE(1347)] = 56031, + [SMALL_STATE(1348)] = 56071, + [SMALL_STATE(1349)] = 56111, + [SMALL_STATE(1350)] = 56159, + [SMALL_STATE(1351)] = 56199, + [SMALL_STATE(1352)] = 56239, + [SMALL_STATE(1353)] = 56279, + [SMALL_STATE(1354)] = 56319, + [SMALL_STATE(1355)] = 56347, + [SMALL_STATE(1356)] = 56387, + [SMALL_STATE(1357)] = 56427, + [SMALL_STATE(1358)] = 56467, + [SMALL_STATE(1359)] = 56507, + [SMALL_STATE(1360)] = 56547, + [SMALL_STATE(1361)] = 56587, + [SMALL_STATE(1362)] = 56627, + [SMALL_STATE(1363)] = 56667, + [SMALL_STATE(1364)] = 56707, + [SMALL_STATE(1365)] = 56735, + [SMALL_STATE(1366)] = 56763, + [SMALL_STATE(1367)] = 56803, + [SMALL_STATE(1368)] = 56835, + [SMALL_STATE(1369)] = 56863, + [SMALL_STATE(1370)] = 56891, + [SMALL_STATE(1371)] = 56923, + [SMALL_STATE(1372)] = 56971, + [SMALL_STATE(1373)] = 57017, + [SMALL_STATE(1374)] = 57057, + [SMALL_STATE(1375)] = 57101, + [SMALL_STATE(1376)] = 57143, + [SMALL_STATE(1377)] = 57183, + [SMALL_STATE(1378)] = 57219, + [SMALL_STATE(1379)] = 57253, + [SMALL_STATE(1380)] = 57293, + [SMALL_STATE(1381)] = 57333, + [SMALL_STATE(1382)] = 57373, + [SMALL_STATE(1383)] = 57401, + [SMALL_STATE(1384)] = 57429, + [SMALL_STATE(1385)] = 57469, + [SMALL_STATE(1386)] = 57501, + [SMALL_STATE(1387)] = 57541, + [SMALL_STATE(1388)] = 57573, + [SMALL_STATE(1389)] = 57613, + [SMALL_STATE(1390)] = 57653, + [SMALL_STATE(1391)] = 57693, + [SMALL_STATE(1392)] = 57733, + [SMALL_STATE(1393)] = 57779, + [SMALL_STATE(1394)] = 57819, + [SMALL_STATE(1395)] = 57859, + [SMALL_STATE(1396)] = 57891, + [SMALL_STATE(1397)] = 57919, + [SMALL_STATE(1398)] = 57959, + [SMALL_STATE(1399)] = 57999, + [SMALL_STATE(1400)] = 58026, + [SMALL_STATE(1401)] = 58071, + [SMALL_STATE(1402)] = 58116, + [SMALL_STATE(1403)] = 58147, + [SMALL_STATE(1404)] = 58192, + [SMALL_STATE(1405)] = 58223, + [SMALL_STATE(1406)] = 58252, + [SMALL_STATE(1407)] = 58297, + [SMALL_STATE(1408)] = 58324, + [SMALL_STATE(1409)] = 58369, + [SMALL_STATE(1410)] = 58414, + [SMALL_STATE(1411)] = 58463, + [SMALL_STATE(1412)] = 58508, + [SMALL_STATE(1413)] = 58551, + [SMALL_STATE(1414)] = 58592, + [SMALL_STATE(1415)] = 58631, + [SMALL_STATE(1416)] = 58668, + [SMALL_STATE(1417)] = 58695, + [SMALL_STATE(1418)] = 58730, + [SMALL_STATE(1419)] = 58775, + [SMALL_STATE(1420)] = 58806, + [SMALL_STATE(1421)] = 58839, + [SMALL_STATE(1422)] = 58884, + [SMALL_STATE(1423)] = 58915, + [SMALL_STATE(1424)] = 58960, + [SMALL_STATE(1425)] = 59005, + [SMALL_STATE(1426)] = 59050, + [SMALL_STATE(1427)] = 59077, + [SMALL_STATE(1428)] = 59104, + [SMALL_STATE(1429)] = 59131, + [SMALL_STATE(1430)] = 59162, + [SMALL_STATE(1431)] = 59189, + [SMALL_STATE(1432)] = 59238, + [SMALL_STATE(1433)] = 59283, + [SMALL_STATE(1434)] = 59314, + [SMALL_STATE(1435)] = 59347, + [SMALL_STATE(1436)] = 59374, + [SMALL_STATE(1437)] = 59419, + [SMALL_STATE(1438)] = 59450, + [SMALL_STATE(1439)] = 59495, + [SMALL_STATE(1440)] = 59540, + [SMALL_STATE(1441)] = 59571, + [SMALL_STATE(1442)] = 59602, + [SMALL_STATE(1443)] = 59637, + [SMALL_STATE(1444)] = 59682, + [SMALL_STATE(1445)] = 59709, + [SMALL_STATE(1446)] = 59736, + [SMALL_STATE(1447)] = 59777, + [SMALL_STATE(1448)] = 59818, + [SMALL_STATE(1449)] = 59859, + [SMALL_STATE(1450)] = 59900, + [SMALL_STATE(1451)] = 59941, + [SMALL_STATE(1452)] = 59982, + [SMALL_STATE(1453)] = 60023, + [SMALL_STATE(1454)] = 60064, + [SMALL_STATE(1455)] = 60099, + [SMALL_STATE(1456)] = 60140, + [SMALL_STATE(1457)] = 60181, + [SMALL_STATE(1458)] = 60229, + [SMALL_STATE(1459)] = 60277, + [SMALL_STATE(1460)] = 60325, + [SMALL_STATE(1461)] = 60373, + [SMALL_STATE(1462)] = 60421, + [SMALL_STATE(1463)] = 60459, + [SMALL_STATE(1464)] = 60497, + [SMALL_STATE(1465)] = 60542, + [SMALL_STATE(1466)] = 60587, + [SMALL_STATE(1467)] = 60628, + [SMALL_STATE(1468)] = 60673, + [SMALL_STATE(1469)] = 60714, + [SMALL_STATE(1470)] = 60755, + [SMALL_STATE(1471)] = 60796, + [SMALL_STATE(1472)] = 60841, + [SMALL_STATE(1473)] = 60886, + [SMALL_STATE(1474)] = 60925, + [SMALL_STATE(1475)] = 60963, + [SMALL_STATE(1476)] = 61001, + [SMALL_STATE(1477)] = 61039, + [SMALL_STATE(1478)] = 61077, + [SMALL_STATE(1479)] = 61115, + [SMALL_STATE(1480)] = 61141, + [SMALL_STATE(1481)] = 61171, + [SMALL_STATE(1482)] = 61210, + [SMALL_STATE(1483)] = 61245, + [SMALL_STATE(1484)] = 61274, + [SMALL_STATE(1485)] = 61309, + [SMALL_STATE(1486)] = 61334, + [SMALL_STATE(1487)] = 61369, + [SMALL_STATE(1488)] = 61394, + [SMALL_STATE(1489)] = 61429, + [SMALL_STATE(1490)] = 61464, + [SMALL_STATE(1491)] = 61493, + [SMALL_STATE(1492)] = 61528, + [SMALL_STATE(1493)] = 61553, + [SMALL_STATE(1494)] = 61588, + [SMALL_STATE(1495)] = 61613, + [SMALL_STATE(1496)] = 61646, + [SMALL_STATE(1497)] = 61681, + [SMALL_STATE(1498)] = 61716, + [SMALL_STATE(1499)] = 61745, + [SMALL_STATE(1500)] = 61774, + [SMALL_STATE(1501)] = 61807, + [SMALL_STATE(1502)] = 61842, + [SMALL_STATE(1503)] = 61877, + [SMALL_STATE(1504)] = 61912, + [SMALL_STATE(1505)] = 61944, + [SMALL_STATE(1506)] = 61976, + [SMALL_STATE(1507)] = 61996, + [SMALL_STATE(1508)] = 62028, + [SMALL_STATE(1509)] = 62060, + [SMALL_STATE(1510)] = 62094, + [SMALL_STATE(1511)] = 62126, + [SMALL_STATE(1512)] = 62158, + [SMALL_STATE(1513)] = 62182, + [SMALL_STATE(1514)] = 62202, + [SMALL_STATE(1515)] = 62238, + [SMALL_STATE(1516)] = 62258, + [SMALL_STATE(1517)] = 62289, + [SMALL_STATE(1518)] = 62318, + [SMALL_STATE(1519)] = 62351, + [SMALL_STATE(1520)] = 62380, + [SMALL_STATE(1521)] = 62413, + [SMALL_STATE(1522)] = 62444, + [SMALL_STATE(1523)] = 62473, + [SMALL_STATE(1524)] = 62500, + [SMALL_STATE(1525)] = 62527, + [SMALL_STATE(1526)] = 62560, + [SMALL_STATE(1527)] = 62587, + [SMALL_STATE(1528)] = 62616, + [SMALL_STATE(1529)] = 62645, + [SMALL_STATE(1530)] = 62674, + [SMALL_STATE(1531)] = 62701, + [SMALL_STATE(1532)] = 62730, + [SMALL_STATE(1533)] = 62759, + [SMALL_STATE(1534)] = 62788, + [SMALL_STATE(1535)] = 62819, + [SMALL_STATE(1536)] = 62848, + [SMALL_STATE(1537)] = 62872, + [SMALL_STATE(1538)] = 62890, + [SMALL_STATE(1539)] = 62908, + [SMALL_STATE(1540)] = 62926, + [SMALL_STATE(1541)] = 62950, + [SMALL_STATE(1542)] = 62976, + [SMALL_STATE(1543)] = 63002, + [SMALL_STATE(1544)] = 63024, + [SMALL_STATE(1545)] = 63054, + [SMALL_STATE(1546)] = 63072, + [SMALL_STATE(1547)] = 63098, + [SMALL_STATE(1548)] = 63116, + [SMALL_STATE(1549)] = 63134, + [SMALL_STATE(1550)] = 63160, + [SMALL_STATE(1551)] = 63183, + [SMALL_STATE(1552)] = 63206, + [SMALL_STATE(1553)] = 63235, + [SMALL_STATE(1554)] = 63256, + [SMALL_STATE(1555)] = 63285, + [SMALL_STATE(1556)] = 63314, + [SMALL_STATE(1557)] = 63335, + [SMALL_STATE(1558)] = 63360, + [SMALL_STATE(1559)] = 63389, + [SMALL_STATE(1560)] = 63412, + [SMALL_STATE(1561)] = 63433, + [SMALL_STATE(1562)] = 63462, + [SMALL_STATE(1563)] = 63483, + [SMALL_STATE(1564)] = 63506, + [SMALL_STATE(1565)] = 63527, + [SMALL_STATE(1566)] = 63548, + [SMALL_STATE(1567)] = 63564, + [SMALL_STATE(1568)] = 63588, + [SMALL_STATE(1569)] = 63608, + [SMALL_STATE(1570)] = 63634, + [SMALL_STATE(1571)] = 63650, + [SMALL_STATE(1572)] = 63676, + [SMALL_STATE(1573)] = 63696, + [SMALL_STATE(1574)] = 63712, + [SMALL_STATE(1575)] = 63738, + [SMALL_STATE(1576)] = 63758, + [SMALL_STATE(1577)] = 63782, + [SMALL_STATE(1578)] = 63798, + [SMALL_STATE(1579)] = 63816, + [SMALL_STATE(1580)] = 63842, + [SMALL_STATE(1581)] = 63868, + [SMALL_STATE(1582)] = 63892, + [SMALL_STATE(1583)] = 63918, + [SMALL_STATE(1584)] = 63944, + [SMALL_STATE(1585)] = 63968, + [SMALL_STATE(1586)] = 63988, + [SMALL_STATE(1587)] = 64008, + [SMALL_STATE(1588)] = 64030, + [SMALL_STATE(1589)] = 64046, + [SMALL_STATE(1590)] = 64072, + [SMALL_STATE(1591)] = 64088, + [SMALL_STATE(1592)] = 64114, + [SMALL_STATE(1593)] = 64140, + [SMALL_STATE(1594)] = 64158, + [SMALL_STATE(1595)] = 64174, + [SMALL_STATE(1596)] = 64200, + [SMALL_STATE(1597)] = 64220, + [SMALL_STATE(1598)] = 64244, + [SMALL_STATE(1599)] = 64268, + [SMALL_STATE(1600)] = 64284, + [SMALL_STATE(1601)] = 64304, + [SMALL_STATE(1602)] = 64319, + [SMALL_STATE(1603)] = 64344, + [SMALL_STATE(1604)] = 64363, + [SMALL_STATE(1605)] = 64378, + [SMALL_STATE(1606)] = 64401, + [SMALL_STATE(1607)] = 64416, + [SMALL_STATE(1608)] = 64431, + [SMALL_STATE(1609)] = 64450, + [SMALL_STATE(1610)] = 64467, + [SMALL_STATE(1611)] = 64482, + [SMALL_STATE(1612)] = 64505, + [SMALL_STATE(1613)] = 64520, + [SMALL_STATE(1614)] = 64535, + [SMALL_STATE(1615)] = 64558, + [SMALL_STATE(1616)] = 64573, + [SMALL_STATE(1617)] = 64588, + [SMALL_STATE(1618)] = 64604, + [SMALL_STATE(1619)] = 64618, + [SMALL_STATE(1620)] = 64636, + [SMALL_STATE(1621)] = 64650, + [SMALL_STATE(1622)] = 64668, + [SMALL_STATE(1623)] = 64682, + [SMALL_STATE(1624)] = 64696, + [SMALL_STATE(1625)] = 64712, + [SMALL_STATE(1626)] = 64726, + [SMALL_STATE(1627)] = 64740, + [SMALL_STATE(1628)] = 64758, + [SMALL_STATE(1629)] = 64772, + [SMALL_STATE(1630)] = 64786, + [SMALL_STATE(1631)] = 64800, + [SMALL_STATE(1632)] = 64814, + [SMALL_STATE(1633)] = 64830, + [SMALL_STATE(1634)] = 64848, + [SMALL_STATE(1635)] = 64866, + [SMALL_STATE(1636)] = 64880, + [SMALL_STATE(1637)] = 64896, + [SMALL_STATE(1638)] = 64912, + [SMALL_STATE(1639)] = 64930, + [SMALL_STATE(1640)] = 64944, + [SMALL_STATE(1641)] = 64958, + [SMALL_STATE(1642)] = 64972, + [SMALL_STATE(1643)] = 64986, + [SMALL_STATE(1644)] = 65000, + [SMALL_STATE(1645)] = 65016, + [SMALL_STATE(1646)] = 65030, + [SMALL_STATE(1647)] = 65048, + [SMALL_STATE(1648)] = 65065, + [SMALL_STATE(1649)] = 65082, + [SMALL_STATE(1650)] = 65093, + [SMALL_STATE(1651)] = 65104, + [SMALL_STATE(1652)] = 65115, + [SMALL_STATE(1653)] = 65126, + [SMALL_STATE(1654)] = 65137, + [SMALL_STATE(1655)] = 65156, + [SMALL_STATE(1656)] = 65167, + [SMALL_STATE(1657)] = 65186, + [SMALL_STATE(1658)] = 65197, + [SMALL_STATE(1659)] = 65208, + [SMALL_STATE(1660)] = 65219, + [SMALL_STATE(1661)] = 65230, + [SMALL_STATE(1662)] = 65249, + [SMALL_STATE(1663)] = 65260, + [SMALL_STATE(1664)] = 65273, + [SMALL_STATE(1665)] = 65284, + [SMALL_STATE(1666)] = 65298, + [SMALL_STATE(1667)] = 65314, + [SMALL_STATE(1668)] = 65328, + [SMALL_STATE(1669)] = 65342, + [SMALL_STATE(1670)] = 65356, + [SMALL_STATE(1671)] = 65370, + [SMALL_STATE(1672)] = 65384, + [SMALL_STATE(1673)] = 65398, + [SMALL_STATE(1674)] = 65412, + [SMALL_STATE(1675)] = 65426, + [SMALL_STATE(1676)] = 65442, + [SMALL_STATE(1677)] = 65458, + [SMALL_STATE(1678)] = 65472, + [SMALL_STATE(1679)] = 65486, + [SMALL_STATE(1680)] = 65500, + [SMALL_STATE(1681)] = 65514, + [SMALL_STATE(1682)] = 65530, + [SMALL_STATE(1683)] = 65546, + [SMALL_STATE(1684)] = 65562, + [SMALL_STATE(1685)] = 65576, + [SMALL_STATE(1686)] = 65590, + [SMALL_STATE(1687)] = 65604, + [SMALL_STATE(1688)] = 65620, + [SMALL_STATE(1689)] = 65634, + [SMALL_STATE(1690)] = 65648, + [SMALL_STATE(1691)] = 65664, + [SMALL_STATE(1692)] = 65674, + [SMALL_STATE(1693)] = 65688, + [SMALL_STATE(1694)] = 65702, + [SMALL_STATE(1695)] = 65718, + [SMALL_STATE(1696)] = 65732, + [SMALL_STATE(1697)] = 65748, + [SMALL_STATE(1698)] = 65764, + [SMALL_STATE(1699)] = 65780, + [SMALL_STATE(1700)] = 65794, + [SMALL_STATE(1701)] = 65810, + [SMALL_STATE(1702)] = 65826, + [SMALL_STATE(1703)] = 65840, + [SMALL_STATE(1704)] = 65854, + [SMALL_STATE(1705)] = 65870, + [SMALL_STATE(1706)] = 65884, + [SMALL_STATE(1707)] = 65898, + [SMALL_STATE(1708)] = 65912, + [SMALL_STATE(1709)] = 65928, + [SMALL_STATE(1710)] = 65942, + [SMALL_STATE(1711)] = 65956, + [SMALL_STATE(1712)] = 65966, + [SMALL_STATE(1713)] = 65980, + [SMALL_STATE(1714)] = 65994, + [SMALL_STATE(1715)] = 66010, + [SMALL_STATE(1716)] = 66024, + [SMALL_STATE(1717)] = 66038, + [SMALL_STATE(1718)] = 66052, + [SMALL_STATE(1719)] = 66066, + [SMALL_STATE(1720)] = 66080, + [SMALL_STATE(1721)] = 66094, + [SMALL_STATE(1722)] = 66108, + [SMALL_STATE(1723)] = 66122, + [SMALL_STATE(1724)] = 66138, + [SMALL_STATE(1725)] = 66152, + [SMALL_STATE(1726)] = 66168, + [SMALL_STATE(1727)] = 66182, + [SMALL_STATE(1728)] = 66196, + [SMALL_STATE(1729)] = 66212, + [SMALL_STATE(1730)] = 66228, + [SMALL_STATE(1731)] = 66242, + [SMALL_STATE(1732)] = 66256, + [SMALL_STATE(1733)] = 66270, + [SMALL_STATE(1734)] = 66284, + [SMALL_STATE(1735)] = 66298, + [SMALL_STATE(1736)] = 66312, + [SMALL_STATE(1737)] = 66328, + [SMALL_STATE(1738)] = 66342, + [SMALL_STATE(1739)] = 66355, + [SMALL_STATE(1740)] = 66368, + [SMALL_STATE(1741)] = 66379, + [SMALL_STATE(1742)] = 66392, + [SMALL_STATE(1743)] = 66401, + [SMALL_STATE(1744)] = 66414, + [SMALL_STATE(1745)] = 66427, + [SMALL_STATE(1746)] = 66440, + [SMALL_STATE(1747)] = 66453, + [SMALL_STATE(1748)] = 66462, + [SMALL_STATE(1749)] = 66475, + [SMALL_STATE(1750)] = 66488, + [SMALL_STATE(1751)] = 66501, + [SMALL_STATE(1752)] = 66514, + [SMALL_STATE(1753)] = 66523, + [SMALL_STATE(1754)] = 66536, + [SMALL_STATE(1755)] = 66549, + [SMALL_STATE(1756)] = 66562, + [SMALL_STATE(1757)] = 66571, + [SMALL_STATE(1758)] = 66584, + [SMALL_STATE(1759)] = 66597, + [SMALL_STATE(1760)] = 66610, + [SMALL_STATE(1761)] = 66623, + [SMALL_STATE(1762)] = 66634, + [SMALL_STATE(1763)] = 66645, + [SMALL_STATE(1764)] = 66658, + [SMALL_STATE(1765)] = 66667, + [SMALL_STATE(1766)] = 66680, + [SMALL_STATE(1767)] = 66693, + [SMALL_STATE(1768)] = 66706, + [SMALL_STATE(1769)] = 66715, + [SMALL_STATE(1770)] = 66728, + [SMALL_STATE(1771)] = 66741, + [SMALL_STATE(1772)] = 66754, + [SMALL_STATE(1773)] = 66767, + [SMALL_STATE(1774)] = 66776, + [SMALL_STATE(1775)] = 66789, + [SMALL_STATE(1776)] = 66802, + [SMALL_STATE(1777)] = 66811, + [SMALL_STATE(1778)] = 66820, + [SMALL_STATE(1779)] = 66833, + [SMALL_STATE(1780)] = 66846, + [SMALL_STATE(1781)] = 66859, + [SMALL_STATE(1782)] = 66872, + [SMALL_STATE(1783)] = 66885, + [SMALL_STATE(1784)] = 66898, + [SMALL_STATE(1785)] = 66907, + [SMALL_STATE(1786)] = 66920, + [SMALL_STATE(1787)] = 66933, + [SMALL_STATE(1788)] = 66946, + [SMALL_STATE(1789)] = 66959, + [SMALL_STATE(1790)] = 66972, + [SMALL_STATE(1791)] = 66985, + [SMALL_STATE(1792)] = 66998, + [SMALL_STATE(1793)] = 67011, + [SMALL_STATE(1794)] = 67024, + [SMALL_STATE(1795)] = 67037, + [SMALL_STATE(1796)] = 67050, + [SMALL_STATE(1797)] = 67063, + [SMALL_STATE(1798)] = 67072, + [SMALL_STATE(1799)] = 67085, + [SMALL_STATE(1800)] = 67098, + [SMALL_STATE(1801)] = 67111, + [SMALL_STATE(1802)] = 67124, + [SMALL_STATE(1803)] = 67137, + [SMALL_STATE(1804)] = 67148, + [SMALL_STATE(1805)] = 67161, + [SMALL_STATE(1806)] = 67174, + [SMALL_STATE(1807)] = 67185, + [SMALL_STATE(1808)] = 67198, + [SMALL_STATE(1809)] = 67211, + [SMALL_STATE(1810)] = 67224, + [SMALL_STATE(1811)] = 67237, + [SMALL_STATE(1812)] = 67250, + [SMALL_STATE(1813)] = 67263, + [SMALL_STATE(1814)] = 67276, + [SMALL_STATE(1815)] = 67289, + [SMALL_STATE(1816)] = 67302, + [SMALL_STATE(1817)] = 67315, + [SMALL_STATE(1818)] = 67328, + [SMALL_STATE(1819)] = 67341, + [SMALL_STATE(1820)] = 67354, + [SMALL_STATE(1821)] = 67365, + [SMALL_STATE(1822)] = 67378, + [SMALL_STATE(1823)] = 67391, + [SMALL_STATE(1824)] = 67404, + [SMALL_STATE(1825)] = 67417, + [SMALL_STATE(1826)] = 67430, + [SMALL_STATE(1827)] = 67443, + [SMALL_STATE(1828)] = 67456, + [SMALL_STATE(1829)] = 67469, + [SMALL_STATE(1830)] = 67482, + [SMALL_STATE(1831)] = 67492, + [SMALL_STATE(1832)] = 67500, + [SMALL_STATE(1833)] = 67508, + [SMALL_STATE(1834)] = 67518, + [SMALL_STATE(1835)] = 67528, + [SMALL_STATE(1836)] = 67538, + [SMALL_STATE(1837)] = 67548, + [SMALL_STATE(1838)] = 67558, + [SMALL_STATE(1839)] = 67568, + [SMALL_STATE(1840)] = 67578, + [SMALL_STATE(1841)] = 67588, + [SMALL_STATE(1842)] = 67598, + [SMALL_STATE(1843)] = 67606, + [SMALL_STATE(1844)] = 67614, + [SMALL_STATE(1845)] = 67624, + [SMALL_STATE(1846)] = 67634, + [SMALL_STATE(1847)] = 67644, + [SMALL_STATE(1848)] = 67654, + [SMALL_STATE(1849)] = 67664, + [SMALL_STATE(1850)] = 67674, + [SMALL_STATE(1851)] = 67684, + [SMALL_STATE(1852)] = 67694, + [SMALL_STATE(1853)] = 67702, + [SMALL_STATE(1854)] = 67712, + [SMALL_STATE(1855)] = 67720, + [SMALL_STATE(1856)] = 67730, + [SMALL_STATE(1857)] = 67740, + [SMALL_STATE(1858)] = 67750, + [SMALL_STATE(1859)] = 67760, + [SMALL_STATE(1860)] = 67770, + [SMALL_STATE(1861)] = 67780, + [SMALL_STATE(1862)] = 67790, + [SMALL_STATE(1863)] = 67800, + [SMALL_STATE(1864)] = 67810, + [SMALL_STATE(1865)] = 67820, + [SMALL_STATE(1866)] = 67830, + [SMALL_STATE(1867)] = 67840, + [SMALL_STATE(1868)] = 67850, + [SMALL_STATE(1869)] = 67860, + [SMALL_STATE(1870)] = 67868, + [SMALL_STATE(1871)] = 67878, + [SMALL_STATE(1872)] = 67888, + [SMALL_STATE(1873)] = 67898, + [SMALL_STATE(1874)] = 67908, + [SMALL_STATE(1875)] = 67918, + [SMALL_STATE(1876)] = 67926, + [SMALL_STATE(1877)] = 67934, + [SMALL_STATE(1878)] = 67944, + [SMALL_STATE(1879)] = 67952, + [SMALL_STATE(1880)] = 67960, + [SMALL_STATE(1881)] = 67968, + [SMALL_STATE(1882)] = 67976, + [SMALL_STATE(1883)] = 67984, + [SMALL_STATE(1884)] = 67994, + [SMALL_STATE(1885)] = 68004, + [SMALL_STATE(1886)] = 68014, + [SMALL_STATE(1887)] = 68024, + [SMALL_STATE(1888)] = 68034, + [SMALL_STATE(1889)] = 68044, + [SMALL_STATE(1890)] = 68054, + [SMALL_STATE(1891)] = 68064, + [SMALL_STATE(1892)] = 68074, + [SMALL_STATE(1893)] = 68084, + [SMALL_STATE(1894)] = 68092, + [SMALL_STATE(1895)] = 68102, + [SMALL_STATE(1896)] = 68110, + [SMALL_STATE(1897)] = 68120, + [SMALL_STATE(1898)] = 68130, + [SMALL_STATE(1899)] = 68138, + [SMALL_STATE(1900)] = 68148, + [SMALL_STATE(1901)] = 68158, + [SMALL_STATE(1902)] = 68168, + [SMALL_STATE(1903)] = 68178, + [SMALL_STATE(1904)] = 68188, + [SMALL_STATE(1905)] = 68198, + [SMALL_STATE(1906)] = 68208, + [SMALL_STATE(1907)] = 68218, + [SMALL_STATE(1908)] = 68228, + [SMALL_STATE(1909)] = 68238, + [SMALL_STATE(1910)] = 68248, + [SMALL_STATE(1911)] = 68258, + [SMALL_STATE(1912)] = 68268, + [SMALL_STATE(1913)] = 68278, + [SMALL_STATE(1914)] = 68288, + [SMALL_STATE(1915)] = 68298, + [SMALL_STATE(1916)] = 68308, + [SMALL_STATE(1917)] = 68318, + [SMALL_STATE(1918)] = 68328, + [SMALL_STATE(1919)] = 68338, + [SMALL_STATE(1920)] = 68346, + [SMALL_STATE(1921)] = 68356, + [SMALL_STATE(1922)] = 68366, + [SMALL_STATE(1923)] = 68376, + [SMALL_STATE(1924)] = 68386, + [SMALL_STATE(1925)] = 68396, + [SMALL_STATE(1926)] = 68406, + [SMALL_STATE(1927)] = 68416, + [SMALL_STATE(1928)] = 68426, + [SMALL_STATE(1929)] = 68436, + [SMALL_STATE(1930)] = 68446, + [SMALL_STATE(1931)] = 68456, + [SMALL_STATE(1932)] = 68463, + [SMALL_STATE(1933)] = 68470, + [SMALL_STATE(1934)] = 68477, + [SMALL_STATE(1935)] = 68484, + [SMALL_STATE(1936)] = 68491, + [SMALL_STATE(1937)] = 68498, + [SMALL_STATE(1938)] = 68505, + [SMALL_STATE(1939)] = 68512, + [SMALL_STATE(1940)] = 68519, + [SMALL_STATE(1941)] = 68526, + [SMALL_STATE(1942)] = 68533, + [SMALL_STATE(1943)] = 68540, + [SMALL_STATE(1944)] = 68547, + [SMALL_STATE(1945)] = 68554, + [SMALL_STATE(1946)] = 68561, + [SMALL_STATE(1947)] = 68568, + [SMALL_STATE(1948)] = 68575, + [SMALL_STATE(1949)] = 68582, + [SMALL_STATE(1950)] = 68589, + [SMALL_STATE(1951)] = 68596, + [SMALL_STATE(1952)] = 68603, + [SMALL_STATE(1953)] = 68610, + [SMALL_STATE(1954)] = 68617, + [SMALL_STATE(1955)] = 68624, + [SMALL_STATE(1956)] = 68631, + [SMALL_STATE(1957)] = 68638, + [SMALL_STATE(1958)] = 68645, + [SMALL_STATE(1959)] = 68652, + [SMALL_STATE(1960)] = 68659, + [SMALL_STATE(1961)] = 68666, + [SMALL_STATE(1962)] = 68673, + [SMALL_STATE(1963)] = 68680, + [SMALL_STATE(1964)] = 68687, + [SMALL_STATE(1965)] = 68694, + [SMALL_STATE(1966)] = 68701, + [SMALL_STATE(1967)] = 68708, + [SMALL_STATE(1968)] = 68715, + [SMALL_STATE(1969)] = 68722, + [SMALL_STATE(1970)] = 68729, + [SMALL_STATE(1971)] = 68736, + [SMALL_STATE(1972)] = 68743, + [SMALL_STATE(1973)] = 68750, + [SMALL_STATE(1974)] = 68757, + [SMALL_STATE(1975)] = 68764, + [SMALL_STATE(1976)] = 68771, + [SMALL_STATE(1977)] = 68778, + [SMALL_STATE(1978)] = 68785, + [SMALL_STATE(1979)] = 68792, + [SMALL_STATE(1980)] = 68799, + [SMALL_STATE(1981)] = 68806, + [SMALL_STATE(1982)] = 68813, + [SMALL_STATE(1983)] = 68820, + [SMALL_STATE(1984)] = 68827, + [SMALL_STATE(1985)] = 68834, + [SMALL_STATE(1986)] = 68841, + [SMALL_STATE(1987)] = 68848, + [SMALL_STATE(1988)] = 68855, + [SMALL_STATE(1989)] = 68862, + [SMALL_STATE(1990)] = 68869, + [SMALL_STATE(1991)] = 68876, + [SMALL_STATE(1992)] = 68883, + [SMALL_STATE(1993)] = 68890, + [SMALL_STATE(1994)] = 68897, + [SMALL_STATE(1995)] = 68904, + [SMALL_STATE(1996)] = 68911, + [SMALL_STATE(1997)] = 68918, + [SMALL_STATE(1998)] = 68925, + [SMALL_STATE(1999)] = 68932, + [SMALL_STATE(2000)] = 68939, + [SMALL_STATE(2001)] = 68946, + [SMALL_STATE(2002)] = 68953, + [SMALL_STATE(2003)] = 68960, + [SMALL_STATE(2004)] = 68967, + [SMALL_STATE(2005)] = 68974, + [SMALL_STATE(2006)] = 68981, + [SMALL_STATE(2007)] = 68988, + [SMALL_STATE(2008)] = 68995, + [SMALL_STATE(2009)] = 69002, + [SMALL_STATE(2010)] = 69009, + [SMALL_STATE(2011)] = 69016, + [SMALL_STATE(2012)] = 69023, + [SMALL_STATE(2013)] = 69030, + [SMALL_STATE(2014)] = 69037, + [SMALL_STATE(2015)] = 69044, + [SMALL_STATE(2016)] = 69051, + [SMALL_STATE(2017)] = 69058, + [SMALL_STATE(2018)] = 69065, + [SMALL_STATE(2019)] = 69072, + [SMALL_STATE(2020)] = 69079, + [SMALL_STATE(2021)] = 69086, + [SMALL_STATE(2022)] = 69093, + [SMALL_STATE(2023)] = 69100, + [SMALL_STATE(2024)] = 69107, + [SMALL_STATE(2025)] = 69114, + [SMALL_STATE(2026)] = 69121, + [SMALL_STATE(2027)] = 69128, + [SMALL_STATE(2028)] = 69135, + [SMALL_STATE(2029)] = 69142, + [SMALL_STATE(2030)] = 69149, + [SMALL_STATE(2031)] = 69156, + [SMALL_STATE(2032)] = 69163, + [SMALL_STATE(2033)] = 69170, + [SMALL_STATE(2034)] = 69177, + [SMALL_STATE(2035)] = 69184, + [SMALL_STATE(2036)] = 69191, + [SMALL_STATE(2037)] = 69198, + [SMALL_STATE(2038)] = 69205, + [SMALL_STATE(2039)] = 69212, + [SMALL_STATE(2040)] = 69219, + [SMALL_STATE(2041)] = 69226, + [SMALL_STATE(2042)] = 69233, + [SMALL_STATE(2043)] = 69240, + [SMALL_STATE(2044)] = 69247, + [SMALL_STATE(2045)] = 69254, + [SMALL_STATE(2046)] = 69261, + [SMALL_STATE(2047)] = 69268, + [SMALL_STATE(2048)] = 69275, + [SMALL_STATE(2049)] = 69282, + [SMALL_STATE(2050)] = 69289, + [SMALL_STATE(2051)] = 69296, + [SMALL_STATE(2052)] = 69303, + [SMALL_STATE(2053)] = 69310, + [SMALL_STATE(2054)] = 69317, + [SMALL_STATE(2055)] = 69324, + [SMALL_STATE(2056)] = 69331, + [SMALL_STATE(2057)] = 69338, + [SMALL_STATE(2058)] = 69345, + [SMALL_STATE(2059)] = 69352, + [SMALL_STATE(2060)] = 69359, + [SMALL_STATE(2061)] = 69366, + [SMALL_STATE(2062)] = 69373, + [SMALL_STATE(2063)] = 69380, + [SMALL_STATE(2064)] = 69387, + [SMALL_STATE(2065)] = 69394, + [SMALL_STATE(2066)] = 69401, + [SMALL_STATE(2067)] = 69408, + [SMALL_STATE(2068)] = 69415, + [SMALL_STATE(2069)] = 69422, + [SMALL_STATE(2070)] = 69429, + [SMALL_STATE(2071)] = 69436, + [SMALL_STATE(2072)] = 69443, + [SMALL_STATE(2073)] = 69450, + [SMALL_STATE(2074)] = 69457, + [SMALL_STATE(2075)] = 69464, + [SMALL_STATE(2076)] = 69471, + [SMALL_STATE(2077)] = 69478, + [SMALL_STATE(2078)] = 69485, + [SMALL_STATE(2079)] = 69492, + [SMALL_STATE(2080)] = 69499, + [SMALL_STATE(2081)] = 69506, + [SMALL_STATE(2082)] = 69513, + [SMALL_STATE(2083)] = 69520, + [SMALL_STATE(2084)] = 69527, + [SMALL_STATE(2085)] = 69534, + [SMALL_STATE(2086)] = 69541, + [SMALL_STATE(2087)] = 69548, + [SMALL_STATE(2088)] = 69555, + [SMALL_STATE(2089)] = 69562, + [SMALL_STATE(2090)] = 69569, + [SMALL_STATE(2091)] = 69576, + [SMALL_STATE(2092)] = 69583, + [SMALL_STATE(2093)] = 69590, + [SMALL_STATE(2094)] = 69597, + [SMALL_STATE(2095)] = 69604, + [SMALL_STATE(2096)] = 69611, + [SMALL_STATE(2097)] = 69618, + [SMALL_STATE(2098)] = 69625, + [SMALL_STATE(2099)] = 69632, + [SMALL_STATE(2100)] = 69639, + [SMALL_STATE(2101)] = 69646, + [SMALL_STATE(2102)] = 69653, + [SMALL_STATE(2103)] = 69660, + [SMALL_STATE(2104)] = 69667, + [SMALL_STATE(2105)] = 69674, + [SMALL_STATE(2106)] = 69681, + [SMALL_STATE(2107)] = 69688, + [SMALL_STATE(2108)] = 69695, + [SMALL_STATE(2109)] = 69702, + [SMALL_STATE(2110)] = 69709, + [SMALL_STATE(2111)] = 69716, + [SMALL_STATE(2112)] = 69723, + [SMALL_STATE(2113)] = 69730, + [SMALL_STATE(2114)] = 69737, + [SMALL_STATE(2115)] = 69744, + [SMALL_STATE(2116)] = 69751, + [SMALL_STATE(2117)] = 69758, + [SMALL_STATE(2118)] = 69765, + [SMALL_STATE(2119)] = 69772, + [SMALL_STATE(2120)] = 69779, + [SMALL_STATE(2121)] = 69786, + [SMALL_STATE(2122)] = 69793, + [SMALL_STATE(2123)] = 69800, + [SMALL_STATE(2124)] = 69807, + [SMALL_STATE(2125)] = 69814, + [SMALL_STATE(2126)] = 69821, + [SMALL_STATE(2127)] = 69828, + [SMALL_STATE(2128)] = 69835, + [SMALL_STATE(2129)] = 69842, + [SMALL_STATE(2130)] = 69849, + [SMALL_STATE(2131)] = 69856, + [SMALL_STATE(2132)] = 69863, + [SMALL_STATE(2133)] = 69870, + [SMALL_STATE(2134)] = 69877, + [SMALL_STATE(2135)] = 69884, + [SMALL_STATE(2136)] = 69891, + [SMALL_STATE(2137)] = 69898, + [SMALL_STATE(2138)] = 69905, + [SMALL_STATE(2139)] = 69912, + [SMALL_STATE(2140)] = 69919, + [SMALL_STATE(2141)] = 69926, + [SMALL_STATE(2142)] = 69933, + [SMALL_STATE(2143)] = 69940, + [SMALL_STATE(2144)] = 69947, + [SMALL_STATE(2145)] = 69954, + [SMALL_STATE(2146)] = 69961, + [SMALL_STATE(2147)] = 69968, + [SMALL_STATE(2148)] = 69975, + [SMALL_STATE(2149)] = 69982, + [SMALL_STATE(2150)] = 69989, + [SMALL_STATE(2151)] = 69996, + [SMALL_STATE(2152)] = 70003, + [SMALL_STATE(2153)] = 70010, + [SMALL_STATE(2154)] = 70017, + [SMALL_STATE(2155)] = 70024, + [SMALL_STATE(2156)] = 70031, + [SMALL_STATE(2157)] = 70038, + [SMALL_STATE(2158)] = 70045, + [SMALL_STATE(2159)] = 70052, + [SMALL_STATE(2160)] = 70059, + [SMALL_STATE(2161)] = 70066, + [SMALL_STATE(2162)] = 70073, + [SMALL_STATE(2163)] = 70080, + [SMALL_STATE(2164)] = 70087, + [SMALL_STATE(2165)] = 70094, + [SMALL_STATE(2166)] = 70101, + [SMALL_STATE(2167)] = 70108, + [SMALL_STATE(2168)] = 70115, + [SMALL_STATE(2169)] = 70122, + [SMALL_STATE(2170)] = 70129, + [SMALL_STATE(2171)] = 70136, + [SMALL_STATE(2172)] = 70143, + [SMALL_STATE(2173)] = 70150, + [SMALL_STATE(2174)] = 70157, + [SMALL_STATE(2175)] = 70164, + [SMALL_STATE(2176)] = 70171, + [SMALL_STATE(2177)] = 70178, + [SMALL_STATE(2178)] = 70185, + [SMALL_STATE(2179)] = 70192, + [SMALL_STATE(2180)] = 70199, + [SMALL_STATE(2181)] = 70206, + [SMALL_STATE(2182)] = 70213, + [SMALL_STATE(2183)] = 70220, + [SMALL_STATE(2184)] = 70227, + [SMALL_STATE(2185)] = 70234, + [SMALL_STATE(2186)] = 70241, + [SMALL_STATE(2187)] = 70248, + [SMALL_STATE(2188)] = 70255, + [SMALL_STATE(2189)] = 70262, + [SMALL_STATE(2190)] = 70269, + [SMALL_STATE(2191)] = 70276, + [SMALL_STATE(2192)] = 70283, + [SMALL_STATE(2193)] = 70290, + [SMALL_STATE(2194)] = 70297, + [SMALL_STATE(2195)] = 70304, + [SMALL_STATE(2196)] = 70311, + [SMALL_STATE(2197)] = 70318, + [SMALL_STATE(2198)] = 70325, + [SMALL_STATE(2199)] = 70332, + [SMALL_STATE(2200)] = 70339, + [SMALL_STATE(2201)] = 70346, + [SMALL_STATE(2202)] = 70353, + [SMALL_STATE(2203)] = 70360, + [SMALL_STATE(2204)] = 70367, + [SMALL_STATE(2205)] = 70374, + [SMALL_STATE(2206)] = 70381, + [SMALL_STATE(2207)] = 70388, + [SMALL_STATE(2208)] = 70395, + [SMALL_STATE(2209)] = 70402, + [SMALL_STATE(2210)] = 70409, + [SMALL_STATE(2211)] = 70416, + [SMALL_STATE(2212)] = 70423, + [SMALL_STATE(2213)] = 70430, + [SMALL_STATE(2214)] = 70437, + [SMALL_STATE(2215)] = 70444, + [SMALL_STATE(2216)] = 70451, + [SMALL_STATE(2217)] = 70458, + [SMALL_STATE(2218)] = 70465, + [SMALL_STATE(2219)] = 70472, + [SMALL_STATE(2220)] = 70479, + [SMALL_STATE(2221)] = 70486, + [SMALL_STATE(2222)] = 70493, + [SMALL_STATE(2223)] = 70500, + [SMALL_STATE(2224)] = 70507, + [SMALL_STATE(2225)] = 70514, + [SMALL_STATE(2226)] = 70521, + [SMALL_STATE(2227)] = 70528, + [SMALL_STATE(2228)] = 70535, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -131804,781 +132129,781 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(508), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1558), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1999), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1348), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2000), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1912), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(484), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(621), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(621), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(622), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(128), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1160), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1225), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1053), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2207), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1167), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(33), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1109), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1015), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(994), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1085), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1600), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1648), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1923), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(641), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2103), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(437), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2160), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(579), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2208), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2008), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1832), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2187), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(654), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(655), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2194), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2193), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2192), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1626), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(807), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1767), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1677), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(807), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(817), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(514), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1564), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2014), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1363), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2015), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(483), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(714), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(99), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1144), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1254), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1046), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1174), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1080), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1017), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1012), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1109), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1754), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1602), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1656), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1922), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(672), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2184), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(446), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2175), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(578), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2106), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2023), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1856), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2149), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(615), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2193), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2192), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2191), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1636), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1761), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1697), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(799), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(510), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1556), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2053), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1351), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2028), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1833), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(180), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1162), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1238), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1050), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(506), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1560), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1341), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2043), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(163), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1154), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1211), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1065), [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1831), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(760), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2014), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(444), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2203), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(583), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2102), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2101), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2064), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1863), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1845), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(676), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1860), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(406), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2218), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(580), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2172), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2050), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2140), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(509), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1560), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2071), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1370), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2054), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1888), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(272), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1248), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1043), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1826), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1853), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(649), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1959), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1835), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(446), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2206), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(584), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2013), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2012), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2059), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1858), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2005), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(511), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1553), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2070), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1369), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1927), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1889), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(337), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1152), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1218), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1071), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(48), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1847), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1924), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(660), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2052), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1850), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(421), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(562), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2057), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2062), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1931), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1866), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2177), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1565), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1393), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2069), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(263), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1232), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1069), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(37), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1833), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(682), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1973), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(441), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2221), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(587), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2033), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2032), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2074), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2020), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1553), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1953), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1954), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(245), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1146), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1216), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1024), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(43), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1904), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1923), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(452), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2096), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(577), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1970), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1969), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1956), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1872), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2115), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(517), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1555), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2169), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1333), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2212), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1920), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(484), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(621), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(621), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(622), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1142), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1204), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1026), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2209), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1916), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2207), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1109), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1015), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(994), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1085), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1743), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1600), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1648), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1902), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1891), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(636), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2201), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1884), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(432), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(566), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2198), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2196), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2195), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(654), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(655), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2194), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2193), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2192), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1626), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1767), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1677), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(817), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(484), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(621), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(621), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(622), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(128), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1160), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1225), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1015), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1562), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2223), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1908), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(483), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(714), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1151), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2211), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1907), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2209), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1080), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1017), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1012), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1109), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1754), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1602), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1656), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1905), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1901), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(689), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1900), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(429), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2197), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(576), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2196), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2195), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2194), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(615), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2193), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2192), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2191), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1636), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1761), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1697), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(483), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(714), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1254), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1017), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2209), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2207), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1080), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1012), [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1109), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(994), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1085), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1600), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1648), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1855), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(437), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2160), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(579), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2208), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2008), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2187), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(654), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(655), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2194), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2193), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2192), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1626), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(807), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1767), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1677), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(807), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(817), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(180), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1162), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1238), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1848), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1831), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(444), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2203), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(583), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2102), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2101), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2035), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2064), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1602), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1656), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2175), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2104), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2023), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1856), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2149), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(615), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2193), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2192), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2191), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1636), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1761), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1697), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(799), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1211), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1863), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1845), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1860), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2218), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2183), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2172), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2050), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2140), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(319), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1142), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1204), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1902), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1891), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1884), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(432), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2199), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2198), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2196), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2195), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1908), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2078), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(249), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1151), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1905), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(429), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2197), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(576), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2196), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2195), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2194), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1927), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1964), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1161), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1826), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1853), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1835), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2206), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(584), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2013), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2012), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2059), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1858), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2005), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(515), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(337), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1152), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1218), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1847), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1924), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1850), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(421), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2081), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(562), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2057), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2062), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1931), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1866), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2177), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1921), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1917), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2133), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1878), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(245), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1910), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(452), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2096), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1956), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1872), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2115), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1161), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1232), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2221), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(587), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2033), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2032), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2074), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2020), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1859), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1870), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2148), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(867), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(484), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(621), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(621), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(622), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(180), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1848), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1831), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(760), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2014), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(444), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2203), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(583), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2102), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2101), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2064), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(654), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(655), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2194), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2193), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2192), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1626), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(807), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1767), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1677), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(807), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(817), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(864), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(337), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1847), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(660), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2052), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1850), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(421), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2081), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(562), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2057), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2062), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1931), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1866), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2177), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(870), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(319), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1902), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1891), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(636), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2201), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1884), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(432), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2199), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(566), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2198), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2196), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2195), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1908), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2078), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(872), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1826), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1853), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1959), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1835), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2206), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(584), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2013), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2012), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2059), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1858), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2005), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(869), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(128), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(33), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(641), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2103), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1855), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(437), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2160), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(579), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2211), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2208), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2008), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2187), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(865), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1921), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(664), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2085), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1917), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2133), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1878), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(869), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(483), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(714), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(249), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1920), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1905), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(689), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2199), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1900), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(429), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2197), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(576), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2196), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2195), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2194), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1927), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1964), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(615), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2193), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2192), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2191), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1636), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1761), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1697), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(799), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(245), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1910), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(452), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2096), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1956), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1872), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2115), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(865), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(663), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2016), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2148), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1871), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(868), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(682), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1973), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2221), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(587), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2033), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2032), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2074), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2020), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(99), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(672), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2184), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2175), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(578), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2023), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1856), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2149), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(866), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(163), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1863), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1845), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1860), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(406), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2218), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(580), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2183), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2172), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2050), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), @@ -132586,1645 +132911,1663 @@ static const TSParseActionEntry ts_parse_actions[] = { [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1207), + [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1259), [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1081), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2074), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1379), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1966), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1901), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(994), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1015), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1849), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2207), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1085), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1743), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1648), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2075), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1331), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2019), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1909), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2076), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1346), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2045), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1915), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2027), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1375), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2105), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1890), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1107), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2089), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1388), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1981), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1916), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1012), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1017), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2211), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1865), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1080), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1656), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2090), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1350), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2034), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1924), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2042), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1362), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2146), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1892), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2091), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2060), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1930), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(766), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1677), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1081), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(994), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1015), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2209), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1849), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2207), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1109), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1085), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1743), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1600), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1648), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(845), - [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1730), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(866), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(994), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1015), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2209), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1849), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2207), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(773), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1697), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1107), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1012), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1017), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2211), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1865), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2209), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1080), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1109), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1754), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1602), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1656), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1700), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(873), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1012), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1017), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2211), + [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1865), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2209), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1069), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1207), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1054), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1092), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1102), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1809), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1153), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2209), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3150] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1207), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2209), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2209), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2209), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2209), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1829), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1164), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2211), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2211), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2211), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2211), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2211), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(994), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1309), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1308), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1012), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1310), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1311), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1402), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1431), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1434), - [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1069), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1069), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1420), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1069), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1069), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3817] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1069), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1400), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1440), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1399), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2104), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1916), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1054), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1054), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1404), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1054), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1054), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1429), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1054), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1433), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1437), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1441), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1402), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1440), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1952), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1907), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2209), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2211), [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1741), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1367), - [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2039), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1920), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1353), + [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2041), + [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1908), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1584), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1741), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(715), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2055), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1723), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1636), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1593), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(744), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2030), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1691), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1631), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1569), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1518), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1582), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1633), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1461), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1711), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1712), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1712), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(540), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1809), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1918), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1506), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(835), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1864), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1352), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(558), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1208), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2016), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1463), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1531), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), + [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1699), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1643), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1572), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1568), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1373), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1237), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2202), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1830), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(538), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1829), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1510), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(834), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1869), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(560), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), [5308] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), }; #ifdef __cplusplus